From 0ad9e9143018b03519842cdc5132471b101b48a0 Mon Sep 17 00:00:00 2001 From: harlan Date: Fri, 1 Mar 2024 10:49:53 +1100 Subject: [PATCH] fix(core): display loaded config file log when using one --- packages/core/src/unlighthouse.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/core/src/unlighthouse.ts b/packages/core/src/unlighthouse.ts index a4480f05..762898e4 100644 --- a/packages/core/src/unlighthouse.ts +++ b/packages/core/src/unlighthouse.ts @@ -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()