From bbf2b6dec0abcadb07dd76f94c583f0b9f32503c Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 28 May 2025 13:14:46 -0700 Subject: [PATCH] Remove console.log --- plugins/template-function-xml/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/template-function-xml/src/index.ts b/plugins/template-function-xml/src/index.ts index ed87c3a8..b6595e5a 100755 --- a/plugins/template-function-xml/src/index.ts +++ b/plugins/template-function-xml/src/index.ts @@ -14,7 +14,6 @@ export const plugin: PluginDefinition = { try { const doc = new DOMParser().parseFromString(String(args.values.input), 'text/xml'); let result = xpath.select(String(args.values.query), doc, false); - console.log("RESULT", result); if (Array.isArray(result)) { return String(result.map(c => String(c.firstChild))[0] ?? ''); } else if (result instanceof Node) {