You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PowerShellEditorServices/Services/PowerShell/Host/PsesInternalHost.cs
+9-5
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ public PsesInternalHost(
102
102
// Respect a user provided bundled module path.
103
103
if(Directory.Exists(hostInfo.BundledModulePath))
104
104
{
105
-
_logger.LogTrace("Using new bundled module path: {}",hostInfo.BundledModulePath);
105
+
_logger.LogTrace($"Using new bundled module path: {hostInfo.BundledModulePath}");
106
106
s_bundledModulePath=hostInfo.BundledModulePath;
107
107
}
108
108
@@ -236,7 +236,7 @@ public override void SetShouldExit(int exitCode)
236
236
/// <returns>A task that resolves when the host has finished startup, with the value true if the caller started the host, and false otherwise.</returns>
0 commit comments