Disable debug logic in changeTracker (#1577)

This commit is contained in:
Chenlei Hu
2024-11-17 14:38:14 -05:00
committed by GitHub
parent 71e4a42cfe
commit 545a990365

View File

@@ -99,7 +99,7 @@ export class ChangeTracker {
this.initialState,
this.activeState
)
if (workflow.isModified) {
if (logger.getLevel() <= logger.levels.DEBUG && workflow.isModified) {
const diff = ChangeTracker.graphDiff(
this.initialState,
this.activeState