Skip to content

Commit

Permalink
Reduce the noise in the log from MISEQ_MONITOR.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Dec 14, 2015
1 parent cfbac27 commit 91a691e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion MISEQ_MONITOR.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@

def init_logging(log_file):
try:
logger = miseq_logging.init_logging(log_file, file_log_level=logging.DEBUG, console_log_level=logging.INFO)
logger = miseq_logging.init_logging(log_file,
file_log_level=logging.INFO,
console_log_level=logging.INFO)
logging.getLogger('urllib3.connectionpool').setLevel(logging.WARN)
except Exception as e:
raise Exception("Couldn't setup logging (init_logging() threw exception '{}') - HALTING NOW!".format(str(e)))
return logger
Expand Down
2 changes: 1 addition & 1 deletion micall/settings_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
kive_password = '*******'
kive_groups_allowed = ['Everyone']
pipeline_version_kive_id = 98 # Change for each release
quality_cdt_kive_id = 25 # Kive ID for CompoundDatatype (tile:integer, cycle:integer, errorrate:float)
quality_cdt_kive_id = 25 # Kive ID for CompoundDatatype (tile:integer, cycle:integer, errorrate:float?)
"""
This can be retrieved by entering the Django shell with './manage.py shell'
and using the following script:
Expand Down

0 comments on commit 91a691e

Please sign in to comment.