From a0a9ee1fbb23b40f502cca6f179ab4101004181a Mon Sep 17 00:00:00 2001 From: benStre Date: Sat, 10 Feb 2024 02:00:20 +0100 Subject: [PATCH] remove debug log --- types/function.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/types/function.ts b/types/function.ts index 92952167..77c57dd3 100644 --- a/types/function.ts +++ b/types/function.ts @@ -485,7 +485,6 @@ function to (this:Function, receivers:Receiver) { apply: (target, _thisArg, argArray:unknown[]) => { const externalScopeName = target[DX_EXTERNAL_SCOPE_NAME]; const externalFunctionName = target[DX_EXTERNAL_FUNCTION_NAME]; - console.log("call",externalScopeName, externalFunctionName, argArray) return datex(`#public.?.? ?`, [externalScopeName, externalFunctionName, new Tuple(argArray)], receivers as target_clause) } })