Change uBridge debug level to '1' when debugging is enabled. Fixes #1598

This commit is contained in:
grossmj 2019-06-12 14:35:13 +02:00
parent 54d50b2ef4
commit 2476581dca

View File

@ -256,5 +256,5 @@ class Hypervisor(UBridgeHypervisor):
command = [self._path]
command.extend(["-H", "{}:{}".format(self._host, self._port)])
if log.getEffectiveLevel() == logging.DEBUG:
command.extend(["-d", "2"])
command.extend(["-d", "1"])
return command