This is the main entrypoint module that injects a default implementation of the logger.
import { Module } from '@nestjs/common';import { ZLoggerModule} from '@zthun/lumberjacky-nest';@Module({ imports: [ZLoggerModule]})export class MyModule{ } Copy
import { Module } from '@nestjs/common';import { ZLoggerModule} from '@zthun/lumberjacky-nest';@Module({ imports: [ZLoggerModule]})export class MyModule{ }
This is the main entrypoint module that injects a default implementation of the logger.
Example