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