~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/scripts/logger.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 04:45:35 UTC
  • mfrom: (14565.2.24 apocalyptic-pieces)
  • Revision ID: launchpad@pqm.canonical.com-20111222044535-jbjyzq3hzwiy7g20
[rs=sinzui][no-qa] Move javascript and scripts to lp. Dismantle
 mailnotification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
"""Logging setup for scripts.
7
7
 
8
 
Don't import from this module. Import it from canonical.launchpad.scripts.
 
8
Don't import from this module. Import it from lp.services.scripts.
9
9
 
10
10
Parts of this may be moved into canonical.launchpad somewhere if it is
11
11
to be used for non-script stuff.
435
435
class _LogWrapper:
436
436
    """Changes the logger instance.
437
437
 
438
 
    Other modules will do 'from canonical.launchpad.scripts import log'.
 
438
    Other modules will do 'from lp.services.scripts import log'.
439
439
    This wrapper allows us to change the logger instance these other modules
440
440
    use, by replacing the _log attribute. This is done each call to logger()
441
441
    """