File tree 1 file changed +9
-6
lines changed
src/PowerShellEditorServices/Session
1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -338,9 +338,10 @@ public override void WriteDebugLine(string message)
338
338
if ( this . consoleHost != null )
339
339
{
340
340
this . consoleHost . WriteOutput (
341
- message ,
341
+ "DEBUG: " + message ,
342
342
true ,
343
- OutputType . Debug ) ;
343
+ OutputType . Debug ,
344
+ foregroundColor : ConsoleColor . Yellow ) ;
344
345
}
345
346
}
346
347
@@ -349,9 +350,10 @@ public override void WriteVerboseLine(string message)
349
350
if ( this . consoleHost != null )
350
351
{
351
352
this . consoleHost . WriteOutput (
352
- message ,
353
+ "VERBOSE: " + message ,
353
354
true ,
354
- OutputType . Verbose ) ;
355
+ OutputType . Verbose ,
356
+ foregroundColor : ConsoleColor . Blue ) ;
355
357
}
356
358
}
357
359
@@ -360,9 +362,10 @@ public override void WriteWarningLine(string message)
360
362
if ( this . consoleHost != null )
361
363
{
362
364
this . consoleHost . WriteOutput (
363
- message ,
365
+ "WARNING: " + message ,
364
366
true ,
365
- OutputType . Warning ) ;
367
+ OutputType . Warning ,
368
+ foregroundColor : ConsoleColor . Yellow ) ;
366
369
}
367
370
}
368
371
You can’t perform that action at this time.
0 commit comments