Removed extra space in Log::FormatLine

This commit is contained in:
Jason Watkins
2015-05-14 14:42:29 -07:00
parent 05e0deeb0a
commit acac0063d7

View File

@@ -148,7 +148,7 @@ namespace XPC
WriteTime(fd);
WriteLevel(fd, level);
std::fprintf(fd, "%s| ", tag.c_str());
std::fprintf(fd, "%s|", tag.c_str());
std::vfprintf(fd, format.c_str(), args);
std::fprintf(fd, "\n");
std::fflush(fd);