Fix typo in log messages

main
JulienBedel 2022-09-04 15:13:43 +02:00
parent 904e0e7f29
commit be5883a6a1
1 changed files with 2 additions and 2 deletions

View File

@ -306,9 +306,9 @@ class CMEModule:
if self.trigger_added(context, connection):
context.log.error('Unknown error while removing trigger "{}", exiting'.format(self.trigger_name))
else:
context.log.success('Trigger "{}" successfully removed from KeePass configuration file'.format(self.trigger_name))
context.log.info('Found trigger "{}" in configuration file, removing'.format(self.trigger_name))
else:
context.log.success('No trigger "{}" found in "{}"'.format(self.trigger_name, self.keepass_config_path))
context.log.success('No trigger "{}" found in "{}", skipping'.format(self.trigger_name, self.keepass_config_path))
def all_in_one(self, context, connection):
"""Performs ADD, RESTART, POLL and CLEAN actions one after the other"""