summaryrefslogtreecommitdiff
path: root/obsapi/logger.py
blob: 4831ee0e738c797e6b051fd1618353232fbe38fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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()