From d15f3789f9aabec6109c01a6324be4a69cfb8c0d Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Sat, 29 Jul 2017 07:17:25 -0700 Subject: [PATCH] Remove debug message to make stdout cleaner --- src/scan_python.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scan_python.cpp b/src/scan_python.cpp index fc12e4a5..1c95a8bf 100644 --- a/src/scan_python.cpp +++ b/src/scan_python.cpp @@ -100,8 +100,8 @@ static std::string get_working_dir(const std::string& path) void ScanPython::init(const scanner_params& /*sp*/) { if (py_module.empty() || py_function.empty()) { - DEBUG(1)("[scan_python] Cannot call python becase no provided module/function." "\n" - "\t\t\t\t" "Please use arguments -S py_module=module -S py_function=foo" ); + //DEBUG(1)("[scan_python] Cannot call python becase no provided module/function." "\n" + // "\t\t\t\t" "Please use arguments -S py_module=module -S py_function=foo" ); // "\n" "\t\t\t\t" "The scanner 'python' is disabled to avoid warning messages."); // sp.info->flags = scanner_info::SCANNER_DISABLED; // TODO(simsong): Should we disable the scanner to avoid warnings?