From 6e12fa3cdac9d902a9f075f709942b9031eb4122 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Thu, 27 Mar 2008 15:46:50 +0000 Subject: [PATCH] Reduce log noise for the new http-based rpc This patch just removes an extraneous \n from the log message making it nicer to view. Reviewed-by: schreiberal --- daemons/ganeti-noded | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/ganeti-noded b/daemons/ganeti-noded index c6ab69c04..d2f4055a3 100755 --- a/daemons/ganeti-noded +++ b/daemons/ganeti-noded @@ -93,7 +93,7 @@ class ServerObject(BaseHTTPServer.BaseHTTPRequestHandler): This is the same as the parent, we just log somewhere else. """ - msg = ("%s - - [%s] %s\n" % + msg = ("%s - - [%s] %s" % (self.address_string(), self.log_date_time_string(), format % args)) -- GitLab