ErrorDepth logs to the ERROR 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)
| 163 | // Notice: This API is EXPERIMENTAL and may be changed or removed in a |
| 164 | // later release. |
| 165 | func ErrorDepth(depth int, args ...any) { |
| 166 | if internal.DepthLoggerV2Impl != nil { |
| 167 | internal.DepthLoggerV2Impl.ErrorDepth(depth, args...) |
| 168 | } else { |
| 169 | internal.LoggerV2Impl.Errorln(args...) |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | // FatalDepth logs to the FATAL log at the specified depth. |
| 174 | // |
no test coverage detected