Change logging message to error.

Fixes https://github.com/jensengroup/propka/pull/109#discussion_r532735233 based on suggestion from @orbeckst.
This commit is contained in:
Nathan Baker
2020-11-30 15:17:18 -08:00
parent fda4fe577b
commit c281623078

View File

@@ -163,20 +163,20 @@ class LigandPkaValues:
[self.cxcalc, filename]+options.split(), stdout=subprocess.PIPE,
stderr=subprocess.PIPE).communicate()
if len(errors) > 0:
_LOGGER.info(
_LOGGER.error(
'***********************************************************'
'*********************************************')
_LOGGER.info(
'* Warning: Marvin execution failed: '
_LOGGER.error(
'* Error: Marvin execution failed: '
' *')
_LOGGER.info('* {0:<100s} *'.format(errors))
_LOGGER.info(
_LOGGER.error('* {0:<100s} *'.format(errors))
_LOGGER.error(
'* '
' *')
_LOGGER.info(
_LOGGER.error(
'* Please edit the ligand mol2 file and re-run PropKa with '
'the -l option: {0:>29s} *'.format(filename))
_LOGGER.info(
_LOGGER.error(
'***********************************************************'
'*********************************************')
sys.exit(-1)