mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [thehive] fix export logger
This commit is contained in:
parent
414b5af277
commit
a282354fce
1 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ class MISP_Thehive_Auto_Push(AbstractModule):
|
|||
Tag.set_auto_push_status('misp', 'ConnectionError')
|
||||
else:
|
||||
Tag.set_auto_push_status('misp', '')
|
||||
self.logger.info('MISP Pushed:', tag, '->', item_id)
|
||||
self.logger.info(f'MISP Pushed: {tag} -> {item_id}')
|
||||
|
||||
if 'thehive' in self.tags:
|
||||
if tag in self.tags['thehive']:
|
||||
|
@ -68,7 +68,7 @@ class MISP_Thehive_Auto_Push(AbstractModule):
|
|||
Tag.set_auto_push_status('thehive', 'Request Entity Too Large')
|
||||
else:
|
||||
Tag.set_auto_push_status('thehive', '')
|
||||
self.logger.info('thehive Pushed:', tag, '->', item_id)
|
||||
self.logger.info(f'thehive Pushed: {tag} -> {item_id}')
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue