X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-daemon.py;h=350b8f7031d363ffdbf2a7d17d5b2505ae0dec42;hb=cb447687e9c37bc5ecf4bddc2a2c2e744becc16d;hp=586e0ec3606ab50422907816eb450c231d0e6405;hpb=37865d539dabd50321ee252173d853676ee0a7d8;p=sliver-openvswitch.git diff --git a/tests/test-daemon.py b/tests/test-daemon.py index 586e0ec36..350b8f703 100644 --- a/tests/test-daemon.py +++ b/tests/test-daemon.py @@ -13,6 +13,7 @@ # limitations under the License. import getopt +import logging import signal import sys import time @@ -24,6 +25,7 @@ def handler(signum, frame): raise Exception("Signal handler called with %d" % signum) def main(argv): + logging.basicConfig(level=logging.DEBUG) signal.signal(signal.SIGHUP, handler)