( level: Option.Option<LogLevel> )
| 1112 | * @category logging |
| 1113 | */ |
| 1114 | export const setUnhandledErrorLogLevel: (level: Option.Option<LogLevel>) => Layer<never> = ( |
| 1115 | level: Option.Option<LogLevel> |
| 1116 | ): Layer<never> => |
| 1117 | scopedDiscard( |
| 1118 | fiberRuntime.fiberRefLocallyScoped(core.currentUnhandledErrorLogLevel, level) |
| 1119 | ) |
| 1120 | |
| 1121 | /** |
| 1122 | * @since 3.17.0 |
nothing calls this directly
no test coverage detected