@pathmaker-digital/pmd-utilities - v2.2.6
    Preparing search index...

    Interface GlobalLogMessage

    Global log message interface. This interface defines the structure of log messages for different environments.

    interface GlobalLogMessage {
        development: {
            debug?: string;
            error?: string;
            info?: string;
            warn?: string;
        };
        production: {
            debug?: string;
            error?: string;
            info?: string;
            warn?: string;
        };
    }
    Index

    Properties

    development: { debug?: string; error?: string; info?: string; warn?: string }
    production: { debug?: string; error?: string; info?: string; warn?: string }