We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5af797 commit ee90434Copy full SHA for ee90434
opengrok-tools/src/main/python/opengrok_tools/utils/commandsequence.py
@@ -139,12 +139,14 @@ def run(self):
139
# If a command fails, terminate the sequence of commands.
140
if retcode != 0:
141
if retcode == 2:
142
- self.logger.info("command '{}' requested break".
143
- format(command))
+ self.logger.debug("command '{}' for project {} "
+ "requested break".
144
+ format(self.name, command))
145
self.run_cleanup()
146
else:
- self.logger.info("command '{}' failed with code {}, "
147
- "breaking".format(command, retcode))
+ self.logger.error("command '{}' for project {} failed "
148
+ "with code {}, breaking".
149
+ format(command, self.name, retcode))
150
self.failed = True
151
152
break
0 commit comments