Mercurial > repos > yating-l > hubarchivecreator
comparison __init__.py @ 11:3f7c40fb51e8 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit c778f8ee85e9acc924c5c0a30042ac90c8e7a70d-dirty
| author | yating-l |
|---|---|
| date | Wed, 28 Dec 2016 17:50:06 -0500 |
| parents | 3e0c61b52a06 |
| children |
comparison
equal
deleted
inserted
replaced
| 10:cf1abb96a43d | 11:3f7c40fb51e8 |
|---|---|
| 1 # Set default logging handler to avoid "No handler found" warnings. | |
| 2 import logging | |
| 3 import sys | |
| 4 | |
| 5 try: # Python 2.7+ | |
| 6 from logging import NullHandler | |
| 7 except ImportError: | |
| 8 class NullHandler(logging.Handler): | |
| 9 def emit(self, record): | |
| 10 pass | |
| 11 | |
| 12 logging.getLogger(__name__).addHandler(NullHandler()) | |
| 13 | |
| 14 log_stdout = None | |
| 15 log_stderr = None | |
| 16 | |
| 17 | |
| 18 # TODO: Handle the Exception by dispatching the error depending on the (debug) mode | |
| 19 #class Exception(Exception): |
