~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-updates

« back to all changes in this revision

Viewing changes to mozilla/testing/mozbase/mozlog/README.md

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-08 10:00:06 UTC
  • mfrom: (1.3.8)
  • Revision ID: package-import@ubuntu.com-20121108100006-xpf89hktfitzuqc3
Tags: 1.9+build1-0ubuntu0.11.10.1
* New upstream stable release to support Thunderbird 17 (CALENDAR_1_9_BUILD1)
  - see LP: #1080212 for USN information

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[Mozlog](https://github.com/mozilla/mozbase/tree/master/mozlog)
2
 
is a python package intended to simplify and standardize logs in the Mozilla universe. 
3
 
It wraps around python's [logging](http://docs.python.org/library/logging.html) 
 
2
is a python package intended to simplify and standardize logs in the Mozilla universe.
 
3
It wraps around python's [logging](http://docs.python.org/library/logging.html)
4
4
module and adds some additional functionality.
5
5
 
6
6
# Usage
7
7
 
8
 
Import mozlog instead of [logging](http://docs.python.org/library/logging.html) 
9
 
(all functionality in the logging module is also available from the mozlog module). 
 
8
Import mozlog instead of [logging](http://docs.python.org/library/logging.html)
 
9
(all functionality in the logging module is also available from the mozlog module).
10
10
To get a logger, call mozlog.getLogger passing in a name and the path to a log file.
11
11
If no log file is specified, the logger will log to stdout.
12
12