From 265f69e236282710bf3adb3d87251df5075f6b6f Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 4 Jan 2011 16:42:10 +0100 Subject: [bindings python] configure basic logging --- bindings/python/tests/binding_tests.py | 3 +++ bindings/python/tests/idwsf1_tests.py | 3 +++ bindings/python/tests/idwsf2_tests.py | 3 +++ 3 files changed, 9 insertions(+) (limited to 'bindings') diff --git a/bindings/python/tests/binding_tests.py b/bindings/python/tests/binding_tests.py index 89039d2e..ba732f37 100755 --- a/bindings/python/tests/binding_tests.py +++ b/bindings/python/tests/binding_tests.py @@ -28,6 +28,9 @@ import unittest import sys import os +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') diff --git a/bindings/python/tests/idwsf1_tests.py b/bindings/python/tests/idwsf1_tests.py index cf47f46a..9ace6200 100755 --- a/bindings/python/tests/idwsf1_tests.py +++ b/bindings/python/tests/idwsf1_tests.py @@ -25,6 +25,9 @@ import os import unittest import sys +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') diff --git a/bindings/python/tests/idwsf2_tests.py b/bindings/python/tests/idwsf2_tests.py index cadb605f..6d43a428 100755 --- a/bindings/python/tests/idwsf2_tests.py +++ b/bindings/python/tests/idwsf2_tests.py @@ -29,6 +29,9 @@ import os import unittest import sys from StringIO import StringIO +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') -- cgit