Documentation
    Preparing search index...

    Represents a service that manages log entries.

    Logging is a fire and forget operation. If it fails, you move on. Logging should never stop the operation of an app.

    interface IZLogger {
        log(entry: IZLogEntry): void;
    }

    Implemented by

    Index

    Methods

    Methods