Reduce the verbosity of logging (#950)

This commit is contained in:
Amir Omidi
2020-04-22 20:33:43 -07:00
committed by GitHub
parent 0a53ff9ff7
commit 89699823bf

View File

@@ -246,7 +246,7 @@ namespace Microsoft.SqlTools.Hosting.Protocol
{
// Verbose logging
string logMessage =
$"Received message with id[{newMessage.Id}], of type[{newMessage.MessageType}] and method[{newMessage.Method}] , and contents[{newMessage.Contents}]";
$"Received message with id[{newMessage.Id}], of type[{newMessage.MessageType}] and method[{newMessage.Method}]";
Logger.Write(TraceEventType.Verbose, logMessage);
// Process the message