@hardpointlabs/sdk
    Preparing search index...

    Interface Logger

    The base type that all log calls in the SDK interact with.

    interface Logger {
        debug(msg: string, props?: LogProps): void;
        error(msg: string, props?: LogProps): void;
        info(msg: string, props?: LogProps): void;
        trace(msg: string, props?: LogProps): void;
        warn(msg: string, props?: LogProps): void;
    }
    Index

    Methods