Skip to content

Commit f339c41

Browse files
author
Vladimir Kotal
committed
fix logging
1 parent 3c629e9 commit f339c41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/sync/commands.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,12 @@ def check(self, ignore_errors):
124124
format(cmd, self.outputs[cmd]))
125125

126126
if self.name in ignore_errors:
127+
self.logger.debug("errors of project {} ignored".
128+
format(self.name))
127129
return
128130

129131
if any(rv != 0 for rv in self.retcodes.values()):
130-
self.logger.error("processing of selfect {} failed".
132+
self.logger.error("processing of {} failed".
131133
format(self))
132134
indent = " "
133135
self.logger.error("{}failed commands:".format(indent))

0 commit comments

Comments
 (0)