mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
Switch to using the new custom logger
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
b256fc8b36
commit
e37722a56a
24 changed files with 83 additions and 34 deletions
|
@ -1,5 +1,6 @@
|
|||
import { forwardRef, Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { LoggerModule } from '../logger/logger.module';
|
||||
import { NotesModule } from '../notes/notes.module';
|
||||
import { Authorship } from './authorship.entity';
|
||||
import { Revision } from './revision.entity';
|
||||
|
@ -9,6 +10,7 @@ import { RevisionsService } from './revisions.service';
|
|||
imports: [
|
||||
TypeOrmModule.forFeature([Revision, Authorship]),
|
||||
forwardRef(() => NotesModule),
|
||||
LoggerModule,
|
||||
],
|
||||
providers: [RevisionsService],
|
||||
exports: [RevisionsService],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue