From b767139f86d95e0633b0aa7f19dbb158db09ff71 Mon Sep 17 00:00:00 2001 From: +++ Date: Sun, 26 Jul 2020 23:07:05 +0200 Subject: [PATCH] remove timestamp from logging --- runhackbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runhackbot.py b/runhackbot.py index 97d05ae..83f1430 100755 --- a/runhackbot.py +++ b/runhackbot.py @@ -9,7 +9,7 @@ from hackbot import HackBot # Setup logging. -format_string = '%(asctime)s: %(levelname)-8s %(message)s' +format_string = '%(levelname)-8s %(message)s' logging.basicConfig(level=logging.WARNING, format=format_string) def setup_config(default_config, config_file, config):