39 references to ServerLogger
Microsoft.NET.Sdk.Razor.Tasks (39)
Client.cs (8)
49ServerLogger.Log("Attempt to open named pipe '{0}'", pipeName); 54ServerLogger.Log("Attempt to connect named pipe '{0}'", pipeName); 65ServerLogger.Log($"Connecting to server timed out after {timeoutMilliseconds} ms"); 69ServerLogger.Log("Named pipe '{0}' connected", pipeName); 85ServerLogger.LogException(e, "Exception while connecting to process"); 173ServerLogger.Log($"Before poking pipe {Identifier}."); 177ServerLogger.Log($"After poking pipe {Identifier}."); 186ServerLogger.LogException(e, $"Error poking pipe {Identifier}.");
ServerConnection.cs (11)
157ServerLogger.LogException(ex, "Client mutex creation failed."); 232ServerLogger.Log("Begin writing request"); 234ServerLogger.Log("End writing request"); 238ServerLogger.LogException(e, "Error writing build request."); 245ServerLogger.Log("Begin reading response"); 251ServerLogger.Log("End reading response"); 262ServerLogger.LogException(e, "Error reading response"); 268ServerLogger.Log("Server disconnect"); 353ServerLogger.Log("Attempting to create process '{0}'", expectedPath); 371ServerLogger.Log("Successfully created process with process id {0}", processInfo.dwProcessId); 378ServerLogger.Log("Failed to create process. GetLastError={0}", Marshal.GetLastWin32Error());
ServerProtocol.cs (4)
47ServerLogger.Log("Attempting to read {0} bytes from the stream", count - totalBytesRead); 57ServerLogger.Log("Unexpected -- read 0 bytes from the stream."); 60ServerLogger.Log("Read {0} bytes", bytesRead); 63ServerLogger.Log("Finished read");
ServerRequest.cs (11)
81ServerLogger.Log("Creating ServerRequest"); 82ServerLogger.Log($"Working directory: {workingDirectory}"); 83ServerLogger.Log($"Temp directory: {tempDirectory}"); 100ServerLogger.Log($"argument[{i}] = {arg}"); 127ServerLogger.Log("Reading length of request"); 134ServerLogger.Log("Request is over 1MB in length, cancelling read."); 146ServerLogger.Log("Parsing request"); 174ServerLogger.Log("Formatting request"); 192ServerLogger.Log("Request is over 1MB in length, cancelling write"); 197ServerLogger.Log("Writing length of request."); 202ServerLogger.Log("Writing request of size {0}", length);
ServerResponse.cs (5)
52ServerLogger.Log("Formatting Response"); 65ServerLogger.Log("Writing response length"); 73ServerLogger.Log("Writing response of size {0}", length); 91ServerLogger.Log("Reading response length"); 98ServerLogger.Log("Reading response of length {0}", length);