Lime Web Components API Documentation - v7.2.0
    Preparing search index...

    Interface StandardLogEntryBeta

    Log entry for Debug, Info, and Warn levels

    interface StandardLogEntry {
        data?: LogData;
        level: "debug" | "info" | "warn";
        message: string;
        scope: string;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data?: LogData

    Optional additional structured data

    level: "debug" | "info" | "warn"
    message: string

    The log message

    scope: string

    The scope/category this log entry belongs to

    timestamp: number

    Timestamp when the log entry was created (milliseconds since Unix epoch)

    Use Date.now() to create, new Date(timestamp) to convert back to Date object.