Skip to content

Commit

Permalink
Logging configuration is optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoodiupui committed Nov 13, 2024
1 parent aefd3a2 commit bb305d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/config/logging-config.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { Config } from './config.interface';
*/

export interface LoggingConfig extends Config {
request: {
format: string;
immediate: boolean;
request?: {
format?: string;
immediate?: boolean;
}
main: {
level: string;
maxFiles: number;
main?: {
level?: string;
maxFiles?: number;
}
}

0 comments on commit bb305d9

Please sign in to comment.