We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e42405 commit 27e448bCopy full SHA for 27e448b
SharedProject/Impl/Logger.cs
@@ -60,6 +60,7 @@ private void LogImpl(object[] message, bool withTitle)
60
{
61
try
62
63
+ var logTime = DateTime.Now;
64
var messageList = new List<string>(message?.Select(x => x?.ToString()?.Trim(' ', '\r', '\n')).Where(x => !string.IsNullOrWhiteSpace(x)));
65
66
if (!messageList.Any())
@@ -85,7 +86,7 @@ private void LogImpl(object[] message, bool withTitle)
85
86
87
if (withTitle)
88
- _pane.OutputStringThreadSafe($"{Environment.NewLine}{Vsix.Name} : {logs}{Environment.NewLine}");
89
+ _pane.OutputStringThreadSafe($"{Vsix.Name} {logTime}: {logs}{Environment.NewLine}");
90
}
91
else
92
0 commit comments