Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
Change adapter logs to 'console' instead of 'stdout'
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Dec 5, 2016
1 parent 026a378 commit b755201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chrome/chromeDebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class ChromeDebugSession extends DebugSession {
}

private onLog(msg: string, level: logger.LogLevel): void {
const outputCategory = level === logger.LogLevel.Error ? 'stderr' : 'stdout';
const outputCategory = level === logger.LogLevel.Error ? 'stderr' : 'console';

if (level === logger.LogLevel.Verbose) {
// Distinguish verbose messages with this prefix - makes the logs much more readable
Expand Down

0 comments on commit b755201

Please sign in to comment.