InfofNoCtx
Logs a formatted message without context.
def InfofNoCtx(
format: string,
args: interface{}
) - > null
Logs a formatted message without context. This function is used to output informational messages to the logger without associating them with a specific operational context.
Parameters
| Name | Type | Description |
|---|---|---|
| format | string | The format string for the log message, similar to fmt.Printf. |
| args | interface{} | Arguments to be formatted according to the format string. |
Returns
| Type | Description |
|---|---|
null | This function does not return any value. |