Skip to content

Commit

Permalink
Issue #14: set logging level to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
larshertel committed Jan 12, 2019
1 parent 99de04f commit 6bdc8ce
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sherpa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
from .database import Client
from . import algorithms

__version__ = '0.0.0'
__version__ = '1.0.0'
2 changes: 1 addition & 1 deletion sherpa/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import collections


logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.WARNING)
alglogger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion sherpa/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import pickle


logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.WARNING)
logger = logging.getLogger(__name__)
logging.getLogger('werkzeug').setLevel(level=logging.WARNING)

Expand Down
2 changes: 1 addition & 1 deletion sherpa/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import sherpa


logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.WARNING)
dblogger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion sherpa/schedulers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import logging


logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.WARNING)
logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 6bdc8ce

Please sign in to comment.