From b1eeab1422cc1918b34cd1a7c0ddb0e99d6108ed Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Mon, 22 Aug 2016 14:24:20 +0200 Subject: [PATCH] [NL] removed excessive debug output --- NumLib/NamedFunctionCaller.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/NumLib/NamedFunctionCaller.cpp b/NumLib/NamedFunctionCaller.cpp index b7111612e0f..e7b89d90119 100644 --- a/NumLib/NamedFunctionCaller.cpp +++ b/NumLib/NamedFunctionCaller.cpp @@ -204,8 +204,6 @@ double NamedFunctionCaller::call( assert(_deferred_plugs.empty() && "You must call applyPlugs() before this method!"); - DBUG("Preparing call of fct #%lu %s()", function_idx, - _named_functions[function_idx].getName().c_str()); auto const& sis_sos = _map_sink_source[function_idx]; assert(sis_sos.size() == _named_functions[function_idx].getArgumentNames().size()); @@ -217,17 +215,12 @@ double NamedFunctionCaller::call( if (source >= 0) { fct_args[sink] = call(source, unbound_arguments); - DBUG("setting %luth argument to %g", sink, fct_args[sink]); } else { assert(source != _uninitialized); fct_args[sink] = unbound_arguments[-source-1]; - DBUG("setting %luth argument to %g", sink, fct_args[sink]); } } - DBUG("Finished preparing call of fct #%lu %s()", function_idx, - _named_functions[function_idx].getName().c_str()); - return _named_functions[function_idx].call(fct_args); } -- GitLab