Skip to content

Commit 548d005

Browse files
author
Akos Kitta
committed
fix(log): include debug messages in the log file
`debug` messages logged by the Theia logger were not forwarded to the file logger. Signed-off-by: Akos Kitta <[email protected]>
1 parent d79bc0d commit 548d005

File tree

1 file changed

+1
-1
lines changed
  • electron/build/patch/backend

1 file changed

+1
-1
lines changed

Diff for: electron/build/patch/backend/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ setup({
1818
appName: 'Arduino IDE',
1919
maxSize: 10 * 1024 * 1024
2020
});
21-
for (const name of ['log', 'trace', 'info', 'warn', 'error']) {
21+
for (const name of ['log', 'trace', 'debug', 'info', 'warn', 'error']) {
2222
const original = console[name];
2323
console[name] = (data => {
2424
original(data);

0 commit comments

Comments
 (0)