Skip to content

Commit

Permalink
fix(core): display loaded config file log when using one
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Feb 29, 2024
1 parent 31a3013 commit 0ad9e91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/src/unlighthouse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ export async function createUnlighthouse(userConfig: UserConfig, provider?: Prov

await hooks.callHook('resolved-config', resolvedConfig)

logger.debug(`Creating Unlighthouse ${configFile ? `using config from \`${configFile}\`` : ''}`)
if (configFile) {
logger.info(`Creating Unlighthouse ${configFile ? `using config from \`${configFile}\`` : ''}`)
}

// web socket instance for broadcasting
const ws = provider?.name === 'ci' ? null : new WS()
Expand Down

0 comments on commit 0ad9e91

Please sign in to comment.