From 997a22956dc7fe5e4fd3c8d81410601cbc1daa6e Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Wed, 31 Aug 2022 16:12:47 +0200 Subject: [PATCH] Fix example --- packages/logger/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/logger/README.md b/packages/logger/README.md index c792231..82ae87b 100644 --- a/packages/logger/README.md +++ b/packages/logger/README.md @@ -41,7 +41,7 @@ function activate(context) { logPath: context.logPath, // The logPath is only available from the `vscode.ExtensionContext` logOutputChannel: logOutputChannel, // OutputChannel for the logger sourceLocationTracking: false, - logConsol: false // define if messages should be logged to the consol + logConsole: false // define if messages should be logged to the consol }); extLogger.warn("Hello World");