Skip to content

Commit

Permalink
Hook up xterm.js trace log level
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Aug 23, 2023
1 parent 6885d66 commit f712b1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ export function getXtermScaledDimensions(font: ITerminalFont, width: number, hei

function vscodeToXtermLogLevel(logLevel: LogLevel): XtermLogLevel {
switch (logLevel) {
case LogLevel.Trace:
case LogLevel.Trace: return 'trace';
case LogLevel.Debug: return 'debug';
case LogLevel.Info: return 'info';
case LogLevel.Warning: return 'warn';
Expand Down

0 comments on commit f712b1c

Please sign in to comment.