From 7fb81a61c22e8fb03ac3c0672a041f807a7dd601 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Thu, 19 Jan 2023 20:43:17 +0100 Subject: [PATCH] trying less verbose --- modules/buildbot/buildbot_nix.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/buildbot/buildbot_nix.py b/modules/buildbot/buildbot_nix.py index 3c97f03..b4b718d 100644 --- a/modules/buildbot/buildbot_nix.py +++ b/modules/buildbot/buildbot_nix.py @@ -103,7 +103,7 @@ class NixEvalCommand(buildstep.ShellMixin, steps.BuildStep): kwargs = self.setupShellMixin(kwargs) super().__init__(**kwargs) self.observer = logobserver.BufferLogObserver() - self.addLogObserver("stdio", self.observer) + self.addLogObserver("Eval trace", self.observer) @defer.inlineCallbacks def run(self) -> Generator[Any, object, Any]: @@ -158,6 +158,7 @@ class NixBuildCommand(buildstep.ShellMixin, steps.BuildStep): super().__init__(**kwargs) self.observer = logobserver.BufferLogObserver() self.addLogObserver("stdio", self.observer) + self.logEnviron = False @defer.inlineCallbacks def run(self) -> Generator[Any, object, Any]: