~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/log/loglevels.py

  • Committer: Stuart Bishop
  • Date: 2011-04-05 12:41:25 UTC
  • mto: (8758.6.2 garbo-locking)
  • mto: This revision was merged to the branch mainline in revision 12810.
  • Revision ID: stuart.bishop@canonical.com-20110405124125-x4ju3ehdhmuw3r70
Move LaunchpadLogger to a better location

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    'ERROR',
23
23
    'FATAL',
24
24
    'INFO',
25
 
    'LaunchpadLogger',
26
25
    'WARNING',
27
26
    ]
28
27
 
49
48
DEBUG7 = DEBUG - 6
50
49
DEBUG8 = DEBUG - 7
51
50
DEBUG9 = DEBUG - 8
52
 
 
53
 
 
54
 
class LaunchpadLogger(logging.Logger):
55
 
    """Logger that support our custom levels."""
56
 
 
57
 
    def debug1(self, msg, *args, **kwargs):
58
 
        if self.isEnabledFor(DEBUG1):
59
 
            self._log(DEBUG1, msg, args, **kwargs)
60
 
 
61
 
    def debug2(self, msg, *args, **kwargs):
62
 
        if self.isEnabledFor(DEBUG2):
63
 
            self._log(DEBUG2, msg, args, **kwargs)
64
 
 
65
 
    def debug3(self, msg, *args, **kwargs):
66
 
        if self.isEnabledFor(DEBUG3):
67
 
            self._log(DEBUG3, msg, args, **kwargs)
68
 
 
69
 
    def debug4(self, msg, *args, **kwargs):
70
 
        if self.isEnabledFor(DEBUG4):
71
 
            self._log(DEBUG4, msg, args, **kwargs)
72
 
 
73
 
    def debug5(self, msg, *args, **kwargs):
74
 
        if self.isEnabledFor(DEBUG5):
75
 
            self._log(DEBUG5, msg, args, **kwargs)
76
 
 
77
 
    def debug6(self, msg, *args, **kwargs):
78
 
        if self.isEnabledFor(DEBUG6):
79
 
            self._log(DEBUG6, msg, args, **kwargs)
80
 
 
81
 
    def debug7(self, msg, *args, **kwargs):
82
 
        if self.isEnabledFor(DEBUG7):
83
 
            self._log(DEBUG7, msg, args, **kwargs)
84
 
 
85
 
    def debug8(self, msg, *args, **kwargs):
86
 
        if self.isEnabledFor(DEBUG8):
87
 
            self._log(DEBUG8, msg, args, **kwargs)
88
 
 
89
 
    def debug9(self, msg, *args, **kwargs):
90
 
        if self.isEnabledFor(DEBUG9):
91
 
            self._log(DEBUG9, msg, args, **kwargs)