InfoDepth logs to the INFO log at the specified depth. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
(depth int, args ...any)
| 135 | // Notice: This API is EXPERIMENTAL and may be changed or removed in a |
| 136 | // later release. |
| 137 | func InfoDepth(depth int, args ...any) { |
| 138 | if internal.DepthLoggerV2Impl != nil { |
| 139 | internal.DepthLoggerV2Impl.InfoDepth(depth, args...) |
| 140 | } else { |
| 141 | internal.LoggerV2Impl.Infoln(args...) |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | // WarningDepth logs to the WARNING log at the specified depth. |
| 146 | // |