Skip to content

Commit

Permalink
Change logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Dec 29, 2024
1 parent d944319 commit 1ed5131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export async function activate(context: vscode.ExtensionContext) {
const extension = Extension.getInstance(context);

Logger.info(`Activating ${EXTENSION_NAME} version ${Extension.getInstance().version}...`);
Logger.info(`Logging level: ${Logger.getLevel()}`);

// Set development context
if (!Extension.getInstance().isProductionMode) {
Expand Down
2 changes: 2 additions & 0 deletions src/helpers/SettingsHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ export class Settings {
Settings.config = workspace.getConfiguration(CONFIG_KEY);
});

Logger.info(`Logging level: ${Logger.getLevel()}`);

Settings.onConfigChange();
}

Expand Down

0 comments on commit 1ed5131

Please sign in to comment.