I am hunting a bug which might be connected to unit initialization order. Is there a way to see which initialization section was executed when? I need to know t
You can set breakpoints on all initialization sections that don't break but write a message to the debugger log. It will give you the same list as adding OutputDebugString('...') calls but without having to modify the source code of all units.