summaryrefslogtreecommitdiff
path: root/obsapi/logger.py
diff options
context:
space:
mode:
Diffstat (limited to 'obsapi/logger.py')
-rw-r--r--obsapi/logger.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/obsapi/logger.py b/obsapi/logger.py
new file mode 100644
index 0000000..4831ee0
--- /dev/null
+++ b/obsapi/logger.py
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+"""
+ obsapi: log module
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+
+ This module contains the Logging class
+
+
+ :copyright: Copyright (c) 2018 Scott Bahling, SUSE Linux GmbH
+ :license: GPL-2.0, see COPYING for details
+"""
+
+class Logger(object):
+
+ def __init__(self):
+ self.logger = None
+
+ def info(msg):
+ pass
+
+ def warning(msg):
+ pass
+
+ def debug(msg):
+ pass
+
+ def error(msg):
+ pass
+
+logger = Logger()