mysa-js-sdk
    Preparing search index...

    Interface representing a device log entry from a Mysa device.

    This message contains diagnostic information, error reports, or general logging data from the device. Log entries include a severity level and a descriptive message for debugging and monitoring purposes.

    interface DeviceLog {
        Device: string;
        Level: string;
        Message: string;
        MsgType: DEVICE_LOG;
        Timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Device: string

    Device identifier string

    Level: string

    Log severity level (e.g., "INFO", "WARN", "ERROR", "DEBUG")

    Message: string

    Descriptive log message containing the actual log content

    MsgType: DEVICE_LOG

    The strongly-typed message type identifier

    Timestamp: number

    Unix timestamp when the message was created