Keeta LogoKeeta Logo@keetanetwork/keetanet-client
    Preparing search index...

    Type Alias LogOptions

    Options for a Log instance

    type LogOptions = {
        filter?: LogTarget["filter"];
        logDebugTracing?: boolean;
        logLevel?: LogTarget["logLevel"];
    }
    Index

    Properties

    Filter to apply before sending to targets

    logDebugTracing?: boolean

    Whether to generate debug tracing information for each log entry

    logLevel?: LogTarget["logLevel"]

    Log-level to filter for at the logger level, this is applied before sending to targets and can be used to create loggers that are less verbose than their targets for subsystems that generate a lot of logs, so they can be tuned separately from other systems.

    The default log level is 'ALL' so all logs are sent to all targets (each of which can apply their own filtering)