Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
busma13 committed Jan 3, 2024
1 parent 15aeb4c commit bbc212f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/terafoundation/src/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getLogLevel(level: i.LogLevelConfig): LogLevelObj {
export function createRootLogger(
context: i.FoundationContext<Record<string, any>>
): ts.Logger {
const useDebugLogger = (ts.toBoolean(process.env.USE_DEBUG_LOGGER) || ts.isTest)
const useDebugLogger = (ts.toBoolean(process.env.USE_DEBUG_LOGGER || ts.isTest))
&& !ts.toBoolean(process.env.TESTING_LOG_LEVEL);
const filename = context.name;
const name = context.assignment || filename;
Expand Down

0 comments on commit bbc212f

Please sign in to comment.