Remove debug printing statement
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 14 Nov 2017 02:17:20 +0000 (21:17 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 14 Nov 2017 02:17:20 +0000 (21:17 -0500)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
lttng_ivc/utils/utils.py

index 1660aba1383469d0f6d289aeab431dc87ceedea0..755304137aed849242c7a6a2b8434850faaeb396 100644 (file)
@@ -88,14 +88,11 @@ def find_file(root, name):
     """
     Returns the absolute path or None.
     """
-    print(root)
-    print(name)
     abs_path = None
     for base, dirs, files in os.walk(root):
         for tmp in files:
             if tmp.endswith(name):
                 abs_path = os.path.abspath(os.path.join(base, tmp))
-    print(abs_path)
     return abs_path
 
 
This page took 0.024338 seconds and 5 git commands to generate.