@@ -212,10 +212,10 @@ public Task LoadAndRunEditorServicesAsync()
212212 ValidateConfiguration ( ) ;
213213
214214 // Method with no implementation that forces the PSES assembly to load, triggering an AssemblyResolve event
215- _logger . Log ( PsesLogLevel . Information , "Loading PowerShell Editor Services" ) ;
215+ _logger . Log ( PsesLogLevel . Information , "Loading PowerShell Editor Services Assemblies " ) ;
216216 LoadEditorServices ( ) ;
217217
218- _logger . Log ( PsesLogLevel . Information , "Starting EditorServices " ) ;
218+ _logger . Log ( PsesLogLevel . Information , "Starting PowerShell Editor Services " ) ;
219219
220220 _editorServicesRunner = new EditorServicesRunner ( _logger , _hostConfig , _sessionFileWriter , _loggersToUnsubscribe ) ;
221221
@@ -242,7 +242,7 @@ private void CheckPowerShellVersion()
242242 {
243243 PSLanguageMode languageMode = Runspace . DefaultRunspace . SessionStateProxy . LanguageMode ;
244244
245- _logger . Log ( PsesLogLevel . Debug , $@ "
245+ _logger . Log ( PsesLogLevel . Trace , $@ "
246246== PowerShell Details ==
247247- PowerShell version: { _powerShellVersion }
248248- Language mode: { languageMode }
@@ -295,12 +295,12 @@ private void UpdatePSModulePath()
295295 }
296296 psModulePath = $ "{ psModulePath } { Path . PathSeparator } { _hostConfig . BundledModulePath } ";
297297 Environment . SetEnvironmentVariable ( "PSModulePath" , psModulePath ) ;
298- _logger . Log ( PsesLogLevel . Debug , $ "Updated PSModulePath to: '{ psModulePath } '") ;
298+ _logger . Log ( PsesLogLevel . Trace , $ "Updated PSModulePath to: '{ psModulePath } '") ;
299299 }
300300
301301 private void LogHostInformation ( )
302302 {
303- _logger . Log ( PsesLogLevel . Debug , $ "PID: { System . Diagnostics . Process . GetCurrentProcess ( ) . Id } ") ;
303+ _logger . Log ( PsesLogLevel . Trace , $ "PID: { System . Diagnostics . Process . GetCurrentProcess ( ) . Id } ") ;
304304
305305 _logger . Log ( PsesLogLevel . Debug , $@ "
306306== Build Details ==
@@ -359,7 +359,7 @@ private static string GetPSOutputEncoding()
359359 [ System . Diagnostics . CodeAnalysis . SuppressMessage ( "Usage" , "CA2208:Instantiate argument exceptions correctly" , Justification = "Checking user-defined configuration" ) ]
360360 private void ValidateConfiguration ( )
361361 {
362- _logger . Log ( PsesLogLevel . Trace , "Validating configuration" ) ;
362+ _logger . Log ( PsesLogLevel . Debug , "Validating configuration" ) ;
363363
364364 bool lspUsesStdio = _hostConfig . LanguageServiceTransport is StdioTransportConfig ;
365365 bool debugUsesStdio = _hostConfig . DebugServiceTransport is StdioTransportConfig ;
0 commit comments