diff options
Diffstat (limited to 'obsapi')
| -rw-r--r-- | obsapi/logger.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/obsapi/logger.py b/obsapi/logger.py index 4831ee0..006e8ba 100644 --- a/obsapi/logger.py +++ b/obsapi/logger.py @@ -15,16 +15,16 @@ class Logger(object): def __init__(self): self.logger = None - def info(msg): + def info(self, msg): pass - def warning(msg): + def warning(self, msg): pass - def debug(msg): + def debug(self, msg): pass - def error(msg): + def error(self, msg): pass logger = Logger() |
