Changes between Version 2 and Version 3 of Ticket #35669


Ignore:
Timestamp:
Aug 10, 2024, 1:55:45 AM (6 weeks ago)
Author:
Michael
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35669 – Description

    v2 v3  
    11Having 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
     3So instead of getting:
     4{{{
     5Post-processing 'All' failed!
     6}}}
     7We get the new and improved:
     8{{{
     9Post-processing 'jsapp/jsapp/notify.min.js' failed!
     10}}}
     11Or if more than one file:
     12{{{
     13Post-processing 'jsapp/jsapp/notify.min.js, jsapp/jsapp/somethingelse.min.js' failed!
     14}}}
    215
    316I recommend changing from:
Back to Top