From 19264fdace6eed4fe600948741d21a4b9f947423 Mon Sep 17 00:00:00 2001 From: Scott Bahling Date: Wed, 18 Jul 2018 17:22:00 +0200 Subject: Make flake8 happy Add dummy logger for now --- obsapi/logger.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 obsapi/logger.py (limited to 'obsapi/logger.py') 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() -- cgit v1.2.3