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