cometbill
cometbill

Reputation: 1619

debugging SSIS packages - debug.writeline

The debugging experience in SSIS is not what I am expecting.

I have a script Task that I have added a Imports System.Diagnostics at the header of the class, and in the code I have various debug.writeline ("Attemtpting to move file") type messages.

But, they are not displaying in the output window.

Am I missing something?

Upvotes: 5

Views: 14181

Answers (2)

Todd McDermid
Todd McDermid

Reputation: 1680

Use Dts.Events.FireInformation instead.

Upvotes: 6

Related Questions