# -*- 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(self, msg): pass def warning(self, msg): pass def debug(self, msg): pass def error(self, msg): pass logger = Logger()