Sort NamedItems by abbrev first, since that's often what we use.
[chemdb.git] / chemdb / __init__.py
1 # Copyright
2
3 import logging as _logging
4 import logging.handlers as _logging_handlers
5
6
7 __version__ = '0.5'
8
9
10 LOG = _logging.getLogger('chemdb')
11 LOG.setLevel(_logging.ERROR)
12 LOG.addHandler(_logging_handlers.SysLogHandler(address='/dev/log'))