From acac0063d7dcc77b3a2956038feac5352d45b4c4 Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Thu, 14 May 2015 14:42:29 -0700 Subject: [PATCH] Removed extra space in Log::FormatLine --- xpcPlugin/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcPlugin/Log.cpp b/xpcPlugin/Log.cpp index 183dc1a..a9898b4 100644 --- a/xpcPlugin/Log.cpp +++ b/xpcPlugin/Log.cpp @@ -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);