SSIS Logging - I am currently logging my SSIS pkg execution to sysdtslog90 table.
-- Selecting "OnError" captures start/end time of entire pkg but NO detail.
-- Selecting "OnError", "OnExecStatusChanged" captures start/end time of entire pkg but NO detail.
-- Selecting "OnError", "OnExecStatusChanged", "OnInformation" captures start/end time of entire pkg, individual steps, and LOTS OF EXTRANEOUS information.
How can I capture JUST the start / end time for each individual "step" without all the extraneous detail.
BT