Toolset to render and manage AWS CloudFormation ( https://pypi.org/project/cloudbender )
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
414 B
15 lines
414 B
import logging |
|
|
|
__author__ = 'Stefan Reimer' |
|
__email__ = 'stefan@zero-downtimet.net' |
|
__version__ = '1.2.0' |
|
|
|
|
|
# Set up logging to ``/dev/null`` like a library is supposed to. |
|
# http://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library |
|
class NullHandler(logging.Handler): # pragma: no cover |
|
def emit(self, record): |
|
pass |
|
|
|
|
|
logging.getLogger('cloudbender').addHandler(NullHandler())
|
|
|