From: Martin Palma Date: Tue, 24 Nov 2015 06:39:12 +0000 (+0100) Subject: [RM-13585] Removed timestamp from the console output. X-Git-Tag: v1.5.29~3^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6b71696bca8f5569a0a8a63db7fdbf761ff00900;p=ceph-deploy.git [RM-13585] Removed timestamp from the console output. Signed-off-by: Martin Palma --- diff --git a/ceph_deploy/util/log.py b/ceph_deploy/util/log.py index 6b687c0..1d27984 100644 --- a/ceph_deploy/util/log.py +++ b/ceph_deploy/util/log.py @@ -17,7 +17,7 @@ RESET_SEQ = "\033[0m" COLOR_SEQ = "\033[1;%dm" BOLD_SEQ = "\033[1m" -BASE_COLOR_FORMAT = "[%(timestamp)s][$BOLD%(name)s$RESET][%(color_levelname)-17s] %(message)s" +BASE_COLOR_FORMAT = "[$BOLD%(name)s$RESET][%(color_levelname)-17s] %(message)s" BASE_FORMAT = "[%(timestamp)s][%(name)s][%(levelname)-6s] %(message)s"