=== modified file 'mandos-monitor' --- mandos-monitor 2025-06-27 20:06:35 +0000 +++ mandos-monitor 2026-03-20 09:22:45 +0000 @@ -191,18 +191,19 @@ def checker_completed(self, exitstatus, condition, command): if exitstatus == 0: - log.debug('Checker for client %s (command "%s")' - " succeeded", self.properties["Name"], command) + log.debug('Checker succeeded for client %s' + ' (command "%s")', self.properties["Name"], + command) self.update() return # Checker failed if os.WIFEXITED(condition): - log.info('Checker for client %s (command "%s") failed' + log.info('Checker failed for client %s (command "%s")' " with exit code %d", self.properties["Name"], command, os.WEXITSTATUS(condition)) elif os.WIFSIGNALED(condition): - log.info('Checker for client %s (command "%s") was' - " killed by signal %d", self.properties["Name"], + log.info('Checker was killed for client %s (command "%s")' + ' by signal %d', self.properties["Name"], command, os.WTERMSIG(condition)) self.update()