From: Jonathan Rajotte Date: Tue, 14 Nov 2017 02:17:20 +0000 (-0500) Subject: Remove debug printing statement X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ivc.git;a=commitdiff_plain;h=206ef7445a69afa543ccfa8e13983483aa966623 Remove debug printing statement Signed-off-by: Jonathan Rajotte --- diff --git a/lttng_ivc/utils/utils.py b/lttng_ivc/utils/utils.py index 1660aba..7553041 100644 --- a/lttng_ivc/utils/utils.py +++ b/lttng_ivc/utils/utils.py @@ -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