LogDebugf prints a Debug level message
(ctx context.Context, format string, args ...interface{})
| 65 | |
| 66 | // LogDebugf prints a Debug level message |
| 67 | func LogDebugf(ctx context.Context, format string, args ...interface{}) { |
| 68 | msg := fmt.Sprintf(format, args...) |
| 69 | myLogger := getLogger(ctx) |
| 70 | myLogger.Debug(msg) |
| 71 | } |
| 72 | |
| 73 | // LogInfof prints a Info level message |
| 74 | func LogInfof(ctx context.Context, format string, args ...interface{}) { |