Add missing color argument

This commit is contained in:
BrentHoltsclaw
2022-08-01 14:18:39 -04:00
committed by Nathaniel Mitchell
parent 767dfe30a6
commit cdffd3c777
+1 -1
View File
@@ -357,7 +357,7 @@ class Logger:
def start_module(self, module_name):
"""Displays a banner for the module name provided."""
text = "\n[*] Running module: {}".format(module_name)
self._log(text, pyLogging.INFO)
self._log(text, pyLogging.INFO, "WHITE")
if self.Results.get_current() is not None:
self.Results.get_current().add_desc(module_name)
self.Results.get_current().set_time()