Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. during page generation a debugging information is written into /system/.restricted/debug_@SID@.txt file
  2. extra code is added to a page, that will show:
    1. a mini debugging toolbar (at page top)
    2. a mini debugger report (at page bottom, when toolbar not displayed)
  3. clicking on "Show Debugger" button in the debugger toolbar OR pressing F12 will:
    1. make AJAX request to website and get that generated debugger report
    2. show debugger report back to the user

Image Added

This all works nice when page is reloaded completely, but when it's an SPA website, where each page is loaded via AJAX and debugger panel always points to first generated report then it's not so good.

...