All files / admin/logger FunctionsLogger.ts

100% Statements 13/13
100% Branches 8/8
100% Functions 2/2
100% Lines 13/13

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 341x 1x   1x     9x             9x   1x   2x   1x   1x   1x   1x   1x   1x        
import * as logger from 'firebase-functions/logger';
import { BaseLogger, type LogLevel, type ILogger } from '@stevenkellner/typescript-common-functionality';
 
export class FunctionsLogger extends BaseLogger implements ILogger {
 
    public log(level: LogLevel, verbose: boolean, functionName: string, description: string | null, details: Record<string, unknown> | null): void {
        logger.write({
            severity: this.convertLogLevel(level),
            message: this.logMessage(level, verbose, functionName, description, details)
        });
    }
 
    private convertLogLevel(level: LogLevel): logger.LogSeverity {
        switch (level) {
            case 'debug':
                return 'DEBUG';
            case 'info':
                return 'INFO';
            case 'notice':
                return 'NOTICE';
            case 'warning':
                return 'WARNING';
            case 'error':
                return 'ERROR';
            case 'critical':
                return 'CRITICAL';
            case 'alert':
                return 'ALERT';
            case 'emergency':
                return 'EMERGENCY';
        }
    }
}