add a newline to log output

This commit is contained in:
Gunter Labes 2008-04-26 01:09:47 +00:00
parent 7f7f83fe83
commit 90819a39e9

View file

@ -1004,7 +1004,7 @@ std::string server::process_command(const std::string& query) {
out << "Command '" << command << "' is not recognized.\n" << help_msg;
}
LOG_SERVER << out.str();
LOG_SERVER << out.str(); << "\n";
return out.str();
}