Skip to content

Commit

Permalink
Allow caffe output for errors
Browse files Browse the repository at this point in the history
Helps with debugging bad setups
  • Loading branch information
lukeyeager committed Jun 11, 2015
1 parent 6acb21c commit 019bc6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion digits/config/caffe_option.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def apply(self):
if self._config_file_value:
# Suppress GLOG output for python bindings
GLOG_minloglevel = os.environ.pop('GLOG_minloglevel', None)
os.environ['GLOG_minloglevel'] = '5'
# Show only "ERROR" and "FATAL"
os.environ['GLOG_minloglevel'] = '2'

if self._config_file_value != '<PATHS>':
# Add caffe/python to PATH
Expand Down

0 comments on commit 019bc6c

Please sign in to comment.