MCPcopy Create free account
hub / github.com/Shazbot/WH3-Mod-Manager / hotPathLog

Function hotPathLog

src/nodeExecutor.ts:38–45  ·  view source on GitHub ↗
(executionContext: FlowExecutionContext | undefined, ...args: any[])

Source from the content-addressed store, hash-verified

36};
37
38const hotPathLog = (executionContext: FlowExecutionContext | undefined, ...args: any[]) => {
39 if (executionContext) {
40 flowExecutionDebugLog(executionContext, ...args);
41 return;
42 }
43
44 console.log(...args);
45};
46
47const getNodeConfig = <T>(config: unknown, textValue: string): T | undefined => {
48 if (config !== undefined) {

Callers 8

executeMathMaxNodeFunction · 0.85
executeMathCeilNodeFunction · 0.85
executeLookupNodeFunction · 0.85
executeGenerateRowsNodeFunction · 0.85
executeDumpToTSVNodeFunction · 0.85

Calls 1

flowExecutionDebugLogFunction · 0.90

Tested by

no test coverage detected