Warningf logs to the global logger.
(format string, v ...any)
| 287 | |
| 288 | // Warningf logs to the global logger. |
| 289 | func Warningf(format string, v ...any) { |
| 290 | Log().WarningfAtDepth(1, format, v...) |
| 291 | } |
| 292 | |
| 293 | // DebugfAtDepth logs to the global logger. |
| 294 | func DebugfAtDepth(depth int, format string, v ...any) { |
searching dependent graphs…