Skip to content

Commit 388983f

Browse files
authored
Merge pull request #1417 from microsoft/main
Fixing File writing for EngineLogger (#1415)
2 parents c9f6960 + ad8e28a commit 388983f

File tree

5 files changed

+33
-1
lines changed

5 files changed

+33
-1
lines changed

src/DebugEngineHost/HostLogger.cs

+2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ public static ILogChannel GetNatvisLogChannel()
5454

5555
public static void Reset()
5656
{
57+
s_natvisLogChannel?.Close();
5758
s_natvisLogChannel = null;
59+
s_engineLogChannel?.Close();
5860
s_engineLogChannel = null;
5961
}
6062
}

src/MIDebugEngine/MIDebugCommandDispatcher.cs

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using MICore;
55
using System;
66
using System.Collections.Generic;
7+
using System.IO;
78
using System.Linq;
89
using System.Text;
910
using System.Threading.Tasks;
@@ -89,6 +90,23 @@ private static void process_DebuggerExitEvent(object sender, EventArgs e)
8990

9091
public static void EnableLogging(bool output, string logFile)
9192
{
93+
if (!string.IsNullOrEmpty(logFile))
94+
{
95+
string tempDirectory = Path.GetTempPath();
96+
if (Path.IsPathRooted(logFile) || (!string.IsNullOrEmpty(tempDirectory) && Directory.Exists(tempDirectory)))
97+
{
98+
string filePath = Path.Combine(tempDirectory, logFile);
99+
100+
File.CreateText(filePath).Dispose(); // Test to see if we can create a text file in HostLogChannel. This will allow the error to be shown when enabling the setting.
101+
102+
logFile = filePath;
103+
}
104+
else
105+
{
106+
throw new ArgumentOutOfRangeException(nameof(logFile));
107+
}
108+
}
109+
92110
Logger.CmdLogInfo.logFile = logFile;
93111
if (output)
94112
Logger.CmdLogInfo.logToOutput = WriteLogToOutput;

src/MIDebugPackage/MIDebugPackagePackage.cs

+10
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,16 @@ private void LaunchDebugTarget(string filePath, string options)
403403
private void EnableLogging(bool sendToOutputWindow, string logFile)
404404
{
405405
ThreadHelper.ThrowIfNotOnUIThread();
406+
407+
IVsDebugger debugger = (IVsDebugger)GetService(typeof(IVsDebugger));
408+
DBGMODE[] mode = new DBGMODE[] { DBGMODE.DBGMODE_Design };
409+
int hr = debugger.GetMode(mode);
410+
411+
if (hr == VSConstants.S_OK && mode[0] != DBGMODE.DBGMODE_Design)
412+
{
413+
throw new ArgumentException("Unable to update MIDebugLog while debugging.");
414+
}
415+
406416
try
407417
{
408418
MIDebugCommandDispatcher.EnableLogging(sendToOutputWindow, logFile);

tools/Setup.csx

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class Setup {
218218
{
219219
listFilePath = Path.Join(scriptDirectoryPath, "VS.list");
220220
// Use <Configuration> folder.
221-
binDirectoryPath = Path.Join(binDirectoryPath, Configuration.ToString());
221+
binDirectoryPath = Path.Join(binDirectoryPath, "Lab." + Configuration.ToString());
222222
}
223223
else if (Client == Client.VSCode)
224224
{

tools/VS.list

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Microsoft.MICore.dll,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1111
Microsoft.MICore.XmlSerializers.dll,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1212
Microsoft.MIDebugEngine.dll,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1313
Microsoft.MIDebugEngine.pkgdef,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
14+
Microsoft.MIDebugPackage.dll,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
15+
Microsoft.MIDebugPackage.pkgdef,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1416
Microsoft.SSHDebugPS.dll,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1517
Microsoft.SSHDebugPS.pkgdef,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger
1618
OpenFolderSchema.json,bin,,\Common7\IDE\CommonExtensions\Microsoft\MDD\Debugger

0 commit comments

Comments
 (0)