mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
nixos/test-driver: use function instead of var
Use a proper function to enable serial log printing instead of setting class member variables directly.
This commit is contained in:
parent
c2c525f5bc
commit
a6160e5763
@ -249,10 +249,10 @@ class Driver:
|
||||
)
|
||||
|
||||
def serial_stdout_on(self) -> None:
|
||||
rootlog._print_serial_logs = True
|
||||
rootlog.print_serial_logs(True)
|
||||
|
||||
def serial_stdout_off(self) -> None:
|
||||
rootlog._print_serial_logs = False
|
||||
rootlog.print_serial_logs(False)
|
||||
|
||||
def check_polling_conditions(self) -> None:
|
||||
for condition in self.polling_conditions:
|
||||
|
@ -24,6 +24,9 @@ class Logger:
|
||||
|
||||
self._print_serial_logs = True
|
||||
|
||||
def print_serial_logs(self, enable: bool) -> None:
|
||||
self._print_serial_logs = enable
|
||||
|
||||
@staticmethod
|
||||
def _eprint(*args: object, **kwargs: Any) -> None:
|
||||
print(*args, file=sys.stderr, **kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user