Also introduces a slightly nicer way to get the database interface, and an object-oriented way to allow dependency injection.
18 lines
341 B
Python
18 lines
341 B
Python
"""Extra functionality for attrs."""
|
|
|
|
import logging
|
|
|
|
import attr
|
|
|
|
|
|
def log(name):
|
|
"""Returns a logger attr.ib
|
|
|
|
:param name: name to pass to logging.getLogger()
|
|
:rtype: attr.ib
|
|
"""
|
|
return attr.ib(default=logging.getLogger(name),
|
|
repr=False,
|
|
hash=False,
|
|
cmp=False)
|