summaryrefslogtreecommitdiff
path: root/rdiff-backup/src/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/src/log.py')
-rw-r--r--rdiff-backup/src/log.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/rdiff-backup/src/log.py b/rdiff-backup/src/log.py
index aade607..39918e0 100644
--- a/rdiff-backup/src/log.py
+++ b/rdiff-backup/src/log.py
@@ -1,9 +1,17 @@
-import time, sys, traceback, types
-
-#######################################################################
+# Copyright 2002 Ben Escoto
#
-# log - Manage logging
+# This file is part of rdiff-backup.
#
+# rdiff-backup is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA
+# 02139, USA; either version 2 of the License, or (at your option) any
+# later version; incorporated herein by reference.
+
+"""Manage logging, displaying and recording messages with required verbosity"""
+
+import time, sys, traceback, types
+
class LoggerError(Exception): pass