@neofork/devlogr - v0.0.3
    Preparing search index...

    Interface LogConfig

    Complete configuration object for logger behavior. Typically derived from environment variables and terminal detection.

    interface LogConfig {
        level: LogLevel;
        useJson: boolean;
        useColors: boolean;
        supportsUnicode: boolean;
        supportsEmoji: boolean;
        showEmojis: boolean;
        showTimestamp: boolean;
        timestampFormat: TimestampFormat;
        showPrefix: boolean;
        showIcons: boolean;
    }
    Index

    Properties

    level: LogLevel

    Minimum log level to display messages

    useJson: boolean

    Whether to output structured JSON instead of formatted text

    useColors: boolean

    Whether to use ANSI color codes in output

    supportsUnicode: boolean

    Whether the terminal supports Unicode characters and emojis

    supportsEmoji: boolean

    Whether the terminal supports emoji characters

    showEmojis: boolean

    Whether to show emojis in output (user preference)

    showTimestamp: boolean

    Whether to include timestamps in log messages

    timestampFormat: TimestampFormat

    Format to use for timestamp display when enabled

    showPrefix: boolean

    Whether to show log level prefixes and labels

    showIcons: boolean

    Whether to show icons/symbols in log messages