()
| 31 | |
| 32 | // Reset counter tracking at the start of each flow execution |
| 33 | export const resetCounterTracking = () => { |
| 34 | globalCounterTracking.clear(); |
| 35 | console.log("Counter tracking reset for new flow execution"); |
| 36 | }; |
| 37 | |
| 38 | const hotPathLog = (executionContext: FlowExecutionContext | undefined, ...args: any[]) => { |
| 39 | if (executionContext) { |
no test coverage detected