diff options
author | Rob Austein <sra@hactrn.net> | 2014-05-28 22:08:04 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-05-28 22:08:04 +0000 |
commit | 9eb788ce512ff8d95a78e8a87e49a7766291d699 (patch) | |
tree | 5d0e4c140e08b57e6fcfa08800e2f7d5a37c99bd /ca/tests/yamltest.py | |
parent | 918c574234813292f6ec7154f83cc9ace3a957ae (diff) |
Cleanup. Whack default logging level down to warning, except when running directly under test harness.
svn path=/trunk/; revision=5839
Diffstat (limited to 'ca/tests/yamltest.py')
-rw-r--r-- | ca/tests/yamltest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ca/tests/yamltest.py b/ca/tests/yamltest.py index 3716bd54..f8be9c65 100644 --- a/ca/tests/yamltest.py +++ b/ca/tests/yamltest.py @@ -553,7 +553,7 @@ class allocation(object): representing the running daemon. """ basename = os.path.splitext(os.path.basename(prog))[0] - cmd = [prog, "--foreground", "--log-stderr", "--config", self.path("rpki.conf")] + cmd = [prog, "--foreground", "--log-stderr", "--log-level", "debug", "--config", self.path("rpki.conf")] if args.profile and basename != "rootd": cmd.append("--profile") cmd.append(self.path(basename + ".prof")) |