@jacraig/woodchuck
    Preparing search index...

    Interface LogEvent

    Log event interface

    interface LogEvent {
        args: any;
        exception?: Error;
        id: string;
        level: LogLevel;
        message: string;
        properties: { [key: string]: any };
        timestamp: Date;
    }
    Index

    Properties

    args: any

    The data of the log event

    exception?: Error

    The exception

    id: string

    The log entry's ID

    level: LogLevel

    The log level

    message: string

    The message

    properties: { [key: string]: any }

    The properties of the log event

    timestamp: Date

    The timestamp of the log event