readme update

This commit is contained in:
Jeffrey Paul 2016-03-24 07:48:29 +01:00
parent 2747c70bfe
commit 36617050de
1 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ defaults without that boilerplate. (In effect, moving it into PyPI.)
* `notice` is aliased to `info`, for those who forget that python
doesn't have a notice level (i.e. me).
* If you set the environment variable `LOG_TO_SYSLOG`, it will print out
your log messages on paper and mail them to you.
* If you set the environment variable `LOG_TO_SYSLOG` to something,
it will print out your log messages on paper and mail them to you.
* If stdout is a tty, log messages will be color-coded using the `colorlog`
module.
@ -38,7 +38,7 @@ log.error("something went wrong.")
log.die("bailing out") # exits
print "no soup for you."
print "no soup for you." # never reached
```