Printf
Logs a message at level Info on the standard logger, using the provided context, format string, and arguments.
def Printf(
ctx: context.Context,
format: string,
args: ...interface{}
)
Logs a message at level Info on the standard logger.
Parameters
| Name | Type | Description |
|---|---|---|
| ctx | context.Context | The context for the logger operation. |
| format | string | The format string for the log message, similar to C's printf. |
| args | ...interface{} | The arguments to be formatted according to the format string. |