I am using SSIS 2005. I am already using in built logging like on error, on warning,on task failure etc into my package. I want to write some custom log info to the log text file (which package creates at run time using SSIS log provider).
Suppose my package executes 5 task one by one so i need to write log like
"Before executing task1"
"End executing task1"
"Package running for date" '+(any varaible value)+'
"Before executing task2"
"End executing task2"
.......................
...... and so on. please help.