Skip to content

Commit

Permalink
Change default log level to ERROR
Browse files Browse the repository at this point in the history
Addresses Unidata#50
  • Loading branch information
lesserwhirls committed Apr 1, 2016
1 parent 2000455 commit e03d07d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion siphon/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

log = logging.getLogger(__name__)
log.addHandler(logging.StreamHandler()) # Python 2.7 needs a handler set
log.setLevel(logging.WARNING)
log.setLevel(logging.ERROR)


class TDSCatalog(object):
Expand Down
2 changes: 1 addition & 1 deletion siphon/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import logging

log = logging.getLogger(__name__)
log.setLevel(logging.WARNING)
log.setLevel(logging.ERROR)


class _SimpleTypes(object):
Expand Down
1 change: 1 addition & 0 deletions siphon/ncss_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import numpy as np

log = logging.getLogger(__name__)
log.setLevel(logging.ERROR)


class _Types(object):
Expand Down

0 comments on commit e03d07d

Please sign in to comment.