Skip to content

Commit 1bf5e41

Browse files
JustinGroteandyleejordan
authored andcommitted
Fix some glyphs
1 parent cd8aea9 commit 1bf5e41

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/features/DebugSession.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,7 @@ class PowerShellDebugAdapterTrackerFactory implements DebugAdapterTrackerFactory
626626
return this._log;
627627
}
628628

629+
// This tracker effectively implements the logging for the debug adapter to a LogOutputChannel
629630
createDebugAdapterTracker(session: DebugSession): DebugAdapterTracker {
630631
const sessionInfo = `${this.adapterName} Debug Session: ${session.name} [${session.id}]`;
631632
return {

src/logging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export function LspTraceParser(message: string): [string, LogLevel] {
274274
level = LogLevel.Trace;
275275
}
276276

277-
// These are PSES messages we don't really need to see so we drop these to trace
277+
// These are PSES messages that get logged to the output channel anyways so we drop these to trace for easy noise filtering
278278
if (parsedMessage.startsWith("⬅️ notification 'window/logMessage'")) {
279279
level = LogLevel.Trace;
280280
}

0 commit comments

Comments
 (0)