aboutsummaryrefslogtreecommitdiffstats
path: root/dpd
diff options
context:
space:
mode:
Diffstat (limited to 'dpd')
-rwxr-xr-xdpd/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpd/main.py b/dpd/main.py
index e68b29c..cfd8126 100755
--- a/dpd/main.py
+++ b/dpd/main.py
@@ -27,7 +27,7 @@ logging.basicConfig(format='%(asctime)s - %(module)s - %(levelname)s - %(message
console = logging.StreamHandler()
console.setLevel(logging.INFO)
# set a format which is simpler for console use
-formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
+formatter = logging.Formatter('%(asctime)s - %(module)s - %(levelname)s - %(message)s')
# tell the handler to use this format
console.setFormatter(formatter)
# add the handler to the root logger