ping-identity
    Preparing search index...

    Type Alias LoggerConfig

    Configuration options for the logger.

    type LoggerConfig = {
        custom?: CustomLogger;
        level?: LogLevel;
    }
    Index

    Properties

    Properties

    custom?: CustomLogger

    Custom logger implementation.

    Allows you to provide custom handlers for each log level. If not provided, default console methods will be used.

    level?: LogLevel

    The logging level to use.

    Controls which messages are logged based on severity. Available levels: 'debug', 'info', 'warn', 'error', 'none'.

    'none'