πDebug
The module provides a wrapper for the NestJS Logger.
Imports
import { DebugService } from 'niro-health';import { DebugModule } from 'niro-health';import type { IDebugService } from 'niro-health';Method of Use
import { Module } from '@nestjs/common';
import {
DebugService,
} from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IDebugService',
useClass: DebugService,
},
],
})
export class AppModule {}Without dependencies
Methods
Method
Scope
Description
Last updated