Skip to content

Commit 552c09e

Browse files
authored
fix: add parameter to write logs to Kibana (#58)
* fix: add parameter to write logs to Kibana * ci: bump version
1 parent f20350c commit 552c09e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippet",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
44
"displayName": "Code Snippet",
55
"publisher": "SAPOSS",
66
"author": {

backend/src/logger/logger-wrapper.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ function createExtensionLogger(context: vscode.ExtensionContext) {
7575
level: logLevelSetting,
7676
logPath: contextLogPath,
7777
logOutputChannel: logOutputChannel,
78-
sourceLocationTracking: sourceLocationTrackingSettings
78+
sourceLocationTracking: sourceLocationTrackingSettings,
79+
logConsole: true
7980
};
8081

8182
// The Logger must first be initialized before any logging commands may be invoked.

0 commit comments

Comments
 (0)