diff --git a/scripts/gulp/util.ts b/scripts/gulp/util.ts index a1ff1767a2c..409689b22e2 100644 --- a/scripts/gulp/util.ts +++ b/scripts/gulp/util.ts @@ -74,6 +74,7 @@ export function copySourceToDest(destinationPath: string, excludeSpecs: boolean, } let stream = src(glob); if (stripDebug) { + console.log('Removing debug statements ', destinationPath); stream = stream.pipe(removeDebugStatements()); } return stream.pipe(dest(destinationPath));