Changes between Version 2 and Version 3 of Ticket #35669
- Timestamp:
- Aug 10, 2024, 1:55:45 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35669 – Description
v2 v3 1 1 Having just spend 3 hours trying to debug a collect static issue, to help future travellers, I recommend printing the files that caused max depth to be exceeded, often when a file references itself it causes recursion, but the only clue it currently prints is 'All' which does not narrow down the problem. We can surely do better than that! The proposed change prints the problem files only that keep chaning and can't be resolved: 2 3 So instead of getting: 4 {{{ 5 Post-processing 'All' failed! 6 }}} 7 We get the new and improved: 8 {{{ 9 Post-processing 'jsapp/jsapp/notify.min.js' failed! 10 }}} 11 Or if more than one file: 12 {{{ 13 Post-processing 'jsapp/jsapp/notify.min.js, jsapp/jsapp/somethingelse.min.js' failed! 14 }}} 2 15 3 16 I recommend changing from: