Documentation
    Preparing search index...

    Represents the logger for nestjs.

    You will import this through the ZLoggerModule object.

    You can use this in conjunction with the @zthun/lumberjacky-log!ZLoggerContext object.

    import { Injectable, Inject } from '@nestjs/common';
    import { LoggerToken } from '@zthun/lumberjacky-nest';

    @Injectable
    public class MyService {
    private _logger: IZLogger;

    public constructor(@Inject(LoggerToken) logger: IZLogger) {
    this._logger = new ZLoggerContext('MyService', logger);
    }
    }

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods