Infof logs to the global logger.
(format string, v ...any)
| 282 | |
| 283 | // Infof logs to the global logger. |
| 284 | func Infof(format string, v ...any) { |
| 285 | Log().InfofAtDepth(1, format, v...) |
| 286 | } |
| 287 | |
| 288 | // Warningf logs to the global logger. |
| 289 | func Warningf(format string, v ...any) { |
searching dependent graphs…