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

    Interface BaseLogEntryBeta

    Base properties shared by all log entries

    interface BaseLogEntry {
        data?: LogData;
        message: string;
        scope: string;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data?: LogData

    Optional additional structured data

    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.