16c7e142f8ecad2803678b2a02242f3406fd1721
[nepi.git] / src / nepi / util / logger.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 import logging
21
22 class Logger(object):
23     def __init__(self, logger_component):
24         self._logger = logging.getLogger(logger_component)
25
26     def debug(self, msg, out = None, err = None):
27         self.log(msg, logging.DEBUG, out, err)
28
29     def error(self, msg, out = None, err = None):
30         self.log(msg, logging.ERROR, out, err)
31
32     def warning(self, msg, out = None, err = None):
33         self.log(msg, logging.WARNING, out, err)
34
35     def info(self, msg, out = None, err = None):
36         self.log(msg, logging.INFO, out, err)
37
38     def log(self, msg, level, out = None, err = None):
39         if out:
40             msg += " - OUT: %s " % out
41
42         if err:
43             msg += " - ERROR: %s " % err
44
45         msg = self.log_message(msg)
46
47         self.logger.log(level, msg)
48
49     def log_message(self, msg):
50         return msg
51
52     @property
53     def logger(self):
54         return self._logger