-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d92fad4
commit 467706b
Showing
7 changed files
with
41 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,37 @@ | ||
import { IsNotEmpty, IsString } from 'class-validator'; | ||
|
||
export class LoggingConfig { | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly DEFAULT_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly DEFAULT_LOG_LEVEL!: string; | ||
//Domain Modules | ||
|
||
//Domain Modules | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly PERSONMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly PERSONMODULE_LOG_LEVEL!: string; | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly ORGANISATIONMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly ORGANISATIONMODULE_LOG_LEVEL!: string; | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly ROLLEMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly ROLLEMODULE_LOG_LEVEL!: string; | ||
//Technical Modules | ||
|
||
//Technical Modules | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly KEYCLOAKMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly KEYCLOAKMODULE_LOG_LEVEL!: string; | ||
//SPSH Modules | ||
|
||
//SPSH Modules | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly BACKENDFORFRONTENDMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly UIBACKENDMODULE_LOG_LEVEL!: string; | ||
@IsString() | ||
@IsNotEmpty() | ||
public readonly BACKENDFORFRONTENDMODULE_LOG_LEVEL!: string; | ||
|
||
@IsString() | ||
@IsNotEmpty() | ||
public readonly UIBACKENDMODULE_LOG_LEVEL!: string; | ||
} |