68 references to ServerLogger
rzc (68)
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}.");
CompilerHost.cs (8)
65ServerLogger.Log(output); 66ServerLogger.Log(error); 95ServerLogger.Log($"WorkingDirectory = '{workingDirectory}'"); 96ServerLogger.Log($"TempDirectory = '{tempDirectory}'"); 99ServerLogger.Log($"Argument[{i}] = '{request.Arguments[i]}'"); 104ServerLogger.Log($"Rejecting build due to missing working directory"); 112ServerLogger.Log($"Rejecting build due to missing temp directory"); 120ServerLogger.Log($"Rejecting build due to missing temp directory");
ConnectionHost.cs (8)
59ServerLogger.Log("Waiting for new connection"); 61ServerLogger.Log("Pipe connection detected."); 65ServerLogger.Log("Memory available - accepting connection"); 109ServerLogger.Log($"Before poking pipe {Identifier}."); 113ServerLogger.Log($"After poking pipe {Identifier}."); 122ServerLogger.LogException(e, $"Error poking pipe {Identifier}."); 129ServerLogger.Log($"Pipe {Identifier}: Closing."); 141ServerLogger.LogException(ex, message);
DefaultRequestDispatcher.cs (9)
317ServerLogger.LogException(ex, "Error creating client named pipe"); 328ServerLogger.Log("Begin reading request."); 330ServerLogger.Log("End reading request."); 334ServerLogger.LogException(e, "Error reading build request."); 378ServerLogger.Log("Begin writing response."); 380ServerLogger.Log("End writing response."); 406ServerLogger.LogException(ex, "Error handling connection"); 415ServerLogger.Log("Begin processing request"); 419ServerLogger.Log("End processing request");
MetadataCache.cs (1)
65ServerLogger.LogException(e, $"Error getting timestamp of file {fullPath}.");
Program.cs (2)
57ServerLogger.Log(output); 58ServerLogger.Log(error);
ServerCommand.cs (1)
92ServerLogger.LogException(ex, "Failed to create PID file.");
ServerProtocol\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\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");
ServerProtocol\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);
ServerProtocol\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);