Skip to content

Commit

Permalink
Fix config type for monorepo loggers (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad authored Sep 30, 2024
1 parent 82c1cb0 commit dd5fe11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logging/loggerConfigResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type MonorepoAppLoggerConfig = AppLoggerConfig & {
}

/* c8 ignore next 8 */
export function resolveMonorepoLogger(appConfig: AppLoggerConfig): Logger {
export function resolveMonorepoLogger(appConfig: MonorepoAppLoggerConfig): Logger {
if (appConfig.nodeEnv !== 'development') {
return resolveLogger(appConfig)
}
Expand Down

0 comments on commit dd5fe11

Please sign in to comment.