From: Jonatan Schlag Date: Mon, 4 Jun 2018 08:39:35 +0000 (+0200) Subject: Set log level of login to info X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ff14f2d89cef3aef0358732ea6296902605cda2;p=nitsi.git Set log level of login to info Signed-off-by: Jonatan Schlag --- diff --git a/src/nitsi/test.py b/src/nitsi/test.py index c46d7df..c49c0f3 100755 --- a/src/nitsi/test.py +++ b/src/nitsi/test.py @@ -82,9 +82,9 @@ class test(): # Number of chars of the longest machine name longest_machine_name = self.virtual_environ.longest_machine_name - self.log.debug("Try to login on all machines") + self.log.info("Try to login on all machines") for name in self.virtual_environ.machine_names: - self.log.debug("Try to login on {}".format(name)) + self.log.info("Try to login on {}".format(name)) self.virtual_machines[name].login("{}/test.log".format(self.log_path), log_start_time=log_start_time, longest_machine_name=longest_machine_name)