Documentation
    Preparing search index...

    Represents a log entry.

    interface IZLogEntry {
        context?: string;
        created: string | Date;
        level: ZLogLevel;
        message: string;
    }
    Index

    Properties

    context?: string

    The log context.

    This will usually be a friendly name of a function or class where this log took place.

    created: string | Date

    The creation of this entry.

    level: ZLogLevel

    The log level.

    message: string

    The log message.