summaryrefslogtreecommitdiff
path: root/icklib/logger.py
blob: 6e5e89201ddda6543d7554c21dee4a383ab911ab (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 2015  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=


class Logger(object):

    def __init__(self):
        self._outputs = []
        self._indentation = 2
        self._level = 0

    def add_output_file(self, output, quiet=None):
        self._outputs.append((output, quiet))

    def drop_output_file(self, output):
        self._outputs = [(o, q) for o, q in self._outputs if o != output]

    def set_indentation(self, indentation):
        self._indentation = indentation

    def __enter__(self):
        self._level += 1

    def __exit__(self, *args):
        self._level -= 1

    def log(self, quietable, msg, **kwargs):
        indent = ' ' * self._indentation * self._level
        for f, quiet in self._outputs:
            if not quiet or not quietable:
                f.write(indent + msg.format(**kwargs) + '\n')
                f.flush()

    def important(self, msg, **kwargs):  # pragma: no cover
        self.log(False, msg, **kwargs)

    def chatty(self, msg, **kwargs):  # pragma: no cover
        self.log(True, msg, **kwargs)