185
184
def checker_completed(self, exitstatus, condition, command):
187
186
log.debug('Checker for client %s (command "%s")'
192
191
if os.WIFEXITED(condition):
193
192
log.info('Checker for client %s (command "%s") failed'
195
194
command, os.WEXITSTATUS(condition))
196
195
elif os.WIFSIGNALED(condition):
197
196
log.info('Checker for client %s (command "%s") was'
199
198
command, os.WTERMSIG(condition))