Documentation ¶
Overview ¶
Package apilog provides functions to be used in conjunction with logcop. In particular, logcop will inject calls to these functions as the first statement in methods that implement the v23 API. The output can be controlled by vlog verbosity or vtrace. --vmodule=apilog=<level> can be used to globally control logging, and --vmodule=module=<level> can also be used to control logging on a per-file basis.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LogCall ¶
LogCall logs that its caller has been called given the arguments passed to it. It returns a function that is supposed to be called when the caller returns, logging the caller’s return along with the arguments it is provided with. File name and line number of the call site and a randomly generated invocation identifier is logged automatically. The path through which the caller function returns will be logged automatically too.
The canonical way to use LogCall is along the lines of the following:
func Function(ctx *context.T, a Type1, b Type2) ReturnType { defer apilog.LogCall(ctx, a, b)(ctx) // ... function body ... return retVal }
To log the return value as the function returns, the following pattern should be used. Note that pointers to the output variables should be passed to the returning function, not the variables themselves. Also note that nil can be used when a context.T is not available:
func Function(a Type1, b Type2) (r ReturnType) { defer apilog.LogCall(nil, a, b)(nil, &r) // ... function body ... return computeReturnValue() }
Note that when using this pattern, you do not need to actually assign anything to the named return variable explicitly. A regular return statement would automatically do the proper return variable assignments.
The log injector tool will automatically insert a LogCall invocation into all implementations of the public API it runs, unless a Valid Log Construct is found. A Valid Log Construct is defined as one of the following at the beginning of the function body (i.e. should not be preceded by any non-whitespace or non-comment tokens):
- defer apilog.LogCall(optional arguments)(optional pointers to return values)
- defer apilog.LogCallf(argsFormat, optional arguments)(returnValuesFormat, optional pointers to return values)
- // nologcall
The comment "// nologcall" serves as a hint to log injection and checking tools to exclude the function from their consideration. It is used as follows:
func FunctionWithoutLogging(args ...interface{}) { // nologcall // ... function body ... }
func LogCallf ¶
func LogCallf(ctx *context.T, format string, v ...interface{}) func(*context.T, string, ...interface{})
LogCallf behaves identically to LogCall, except it lets the caller to customize the log messages via format specifiers, like the following:
func Function(a Type1, b Type2) (r, t ReturnType) { defer apilog.LogCallf(nil, "a: %v, b: %v", a, b)(nil, "(r,t)=(%v,%v)", &r, &t) // ... function body ... return finalR, finalT }
Types ¶
This section is empty.