@@ -2737,7 +2737,7 @@ export class DefaultClient implements Client {
27372737 const status : IntelliSenseStatus = { status : Status . IntelliSenseCompiling } ;
27382738 testHook . updateStatus ( status ) ;
27392739 } else if ( message . endsWith ( "IntelliSense done" ) ) {
2740- getOutputChannelLogger ( ) . appendLine ( 6 , localize ( "update.intellisense.time" , "Update IntelliSense time (sec): {0}" , ( Date . now ( ) - timeStamp ) / 1000 ) ) ;
2740+ getOutputChannelLogger ( ) . appendLineAtLevel ( 6 , localize ( "update.intellisense.time" , "Update IntelliSense time (sec): {0}" , ( Date . now ( ) - timeStamp ) / 1000 ) ) ;
27412741 this . model . isUpdatingIntelliSense . Value = false ;
27422742 const status : IntelliSenseStatus = { status : Status . IntelliSenseReady } ;
27432743 testHook . updateStatus ( status ) ;
@@ -3164,7 +3164,7 @@ export class DefaultClient implements Client {
31643164 }
31653165
31663166 const out : Logger = getOutputChannelLogger ( ) ;
3167- out . appendLine ( 6 , localize ( "configurations.received" , "Custom configurations received:" ) ) ;
3167+ out . appendLineAtLevel ( 6 , localize ( "configurations.received" , "Custom configurations received:" ) ) ;
31683168 const sanitized : SourceFileConfigurationItemAdapter [ ] = [ ] ;
31693169 configs . forEach ( item => {
31703170 if ( this . isSourceFileConfigurationItem ( item , providerVersion ) ) {
@@ -3176,8 +3176,8 @@ export class DefaultClient implements Client {
31763176 uri = item . uri . toString ( ) ;
31773177 }
31783178 this . configurationLogging . set ( uri , JSON . stringify ( item . configuration , null , 4 ) ) ;
3179- out . appendLine ( 6 , ` uri: ${ uri } ` ) ;
3180- out . appendLine ( 6 , ` config: ${ JSON . stringify ( item . configuration , null , 2 ) } ` ) ;
3179+ out . appendLineAtLevel ( 6 , ` uri: ${ uri } ` ) ;
3180+ out . appendLineAtLevel ( 6 , ` config: ${ JSON . stringify ( item . configuration , null , 2 ) } ` ) ;
31813181 if ( item . configuration . includePath . some ( path => path . endsWith ( '**' ) ) ) {
31823182 console . warn ( "custom include paths should not use recursive includes ('**')" ) ;
31833183 }
@@ -3281,7 +3281,7 @@ export class DefaultClient implements Client {
32813281 return ;
32823282 }
32833283
3284- getOutputChannelLogger ( ) . appendLine ( 6 , localize ( "browse.configuration.received" , "Custom browse configuration received: {0}" , JSON . stringify ( sanitized , null , 2 ) ) ) ;
3284+ getOutputChannelLogger ( ) . appendLineAtLevel ( 6 , localize ( "browse.configuration.received" , "Custom browse configuration received: {0}" , JSON . stringify ( sanitized , null , 2 ) ) ) ;
32853285
32863286 // Separate compiler path and args before sending to language client
32873287 if ( util . isString ( sanitized . compilerPath ) ) {
0 commit comments