Alter the log message talking about storing the mitigations: remove the part saying that it will take a while

This commit is contained in:
VakarisZ 2021-09-29 17:02:34 +03:00
parent 579ebf4a0f
commit 7939ed4739
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ logger = logging.getLogger(__name__)
def reset_database(): def reset_database():
Database.reset_db() Database.reset_db()
if Database.is_mitigations_missing(): if Database.is_mitigations_missing():
logger.info("Populating Monkey Island with ATT&CK mitigations, this might take a while...") logger.info("Populating Monkey Island with ATT&CK mitigations.")
_try_store_mitigations_on_mongo() _try_store_mitigations_on_mongo()