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 2228f44 commit 7c80805Copy full SHA for 7c80805
SharedProject/Impl/Logger.cs
@@ -60,7 +60,6 @@ private void LogImpl(object[] message, bool withTitle)
60
{
61
try
62
63
- //var logTime = DateTime.Now;
64
var logTime = NowForLog.Get();
65
var messageList = new List<string>(message?.Select(x => x?.ToString()?.Trim(' ', '\r', '\n')).Where(x => !string.IsNullOrWhiteSpace(x)));
66
@@ -87,7 +86,6 @@ private void LogImpl(object[] message, bool withTitle)
87
86
88
if (withTitle)
89
90
- //_pane.OutputStringThreadSafe($"{Vsix.Name} {logTime}: {logs}{Environment.NewLine}");
91
_pane.OutputStringThreadSafe($"{logTime}: {logs}{Environment.NewLine}");
92
}
93
else
0 commit comments