Important Update:
- CLiteProtocol: - Set input string on methods to const char * - Simplify checking for verification - Ensure Length parameter can be left out on all methods - Add quick functions for structured commands: To, From, Command - CLogCore: - Use only "\n", not "\r\n" - SignalCore: - Use std::endl instead of "\r\n"
This commit is contained in:
@@ -83,7 +83,7 @@ void SignalTerminate( int sig )
|
||||
Terminate = true;
|
||||
TermCount++;
|
||||
|
||||
std::cerr << "\r\n" << ProcessName << ": ***********************************" << std::endl;
|
||||
std::cerr << std::endl << ProcessName << ": ***********************************" << std::endl;
|
||||
|
||||
// Create Log Entry
|
||||
if (Log)
|
||||
@@ -134,7 +134,7 @@ void SignalAbort( int sig )
|
||||
}
|
||||
|
||||
// Show signal received
|
||||
std::cerr << "\n" << ProcessName << ": ********************************" << std::endl;
|
||||
std::cerr << std::endl << ProcessName << ": ********************************" << std::endl;
|
||||
|
||||
// Create Log Entry - but don't post
|
||||
if (Log) {
|
||||
|
||||
Reference in New Issue
Block a user