Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 29x 2x 12x 1x 23x 1x 231x 1x 23x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x | import type { Logger, LogLevel } from './definition.ts'; /** * A logger implementation that does not emit any log entries regardless of level. Useful for completely disabling * logging in specific contexts. */ export const OFF_LOGGER: Logger = { get level() { return 'off'; }, set level(_: LogLevel | 'off') { // ignored }, args: () => OFF_LOGGER, trace: () => void {}, t: () => void {}, debug: () => void {}, d: () => void {}, info: () => void {}, i: () => void {}, notice: () => void {}, n: () => void {}, warning: () => void {}, w: () => void {}, error: () => void {}, e: () => void {}, critical: () => void {}, c: () => void {}, alert: () => void {}, a: () => void {}, emergency: () => void {}, em: () => void {}, log: () => void {}, } as const; |