Skip to content

Commit 9e08bbe

Browse files
committed
Reduce PDep network logging
1 parent 6ddfe93 commit 9e08bbe

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

rmgpy/pdep/network.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,18 +1127,18 @@ def log_summary(self, level=logging.INFO):
11271127
logging.log(level, 'Isomers:')
11281128
for isomer in self.isomers:
11291129
logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(isomer, isomer.E0 * 0.001))
1130-
logging.log(level, 'Reactant channels:')
1131-
for reactants in self.reactants:
1132-
logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(reactants, reactants.E0 * 0.001))
1133-
logging.log(level, 'Product channels:')
1134-
for products in self.products:
1135-
logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(products, products.E0 * 0.001))
1136-
logging.log(level, 'Path reactions:')
1137-
for rxn in self.path_reactions:
1138-
logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(
1139-
rxn, float(rxn.transition_state.conformer.E0.value_si * 0.001)))
1140-
logging.log(level, 'Net reactions:')
1141-
for rxn in self.net_reactions:
1142-
logging.log(level, ' {0!s:<48}'.format(rxn))
1130+
# logging.log(level, 'Reactant channels:')
1131+
# for reactants in self.reactants:
1132+
# logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(reactants, reactants.E0 * 0.001))
1133+
# logging.log(level, 'Product channels:')
1134+
# for products in self.products:
1135+
# logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(products, products.E0 * 0.001))
1136+
# logging.log(level, 'Path reactions:')
1137+
# for rxn in self.path_reactions:
1138+
# logging.log(level, ' {0!s:<48} {1:12g} kJ/mol'.format(
1139+
# rxn, float(rxn.transition_state.conformer.E0.value_si * 0.001)))
1140+
# logging.log(level, 'Net reactions:')
1141+
# for rxn in self.net_reactions:
1142+
# logging.log(level, ' {0!s:<48}'.format(rxn))
11431143
logging.log(level, '========================================================================')
11441144
logging.log(level, '')

0 commit comments

Comments
 (0)