Right now, the DebugConsole class has options to log to the console, file or memorylist.
Could you please add 'Trace' as an option which logs a message using the .NET framework trace logging system.
A call to System.Diagnostics.Trace.WriteLine(message) will do fine.
I request this because it is the most easy way to find problems when developing Add-Ins for us (there is no console available for an add-in).
By default, System.Diagnostics.Trace.WriteLine, messages are written to the Windows debug output. Those messages are displayed in the Visual Studio debug output window in debug mode, and can also be shown using the sysinternals 'DebugView' tool.
By using the app.config, the user can even log the trace output to other outputs.
Thank you for this great product, much much better than VSTO!
Could you please add 'Trace' as an option which logs a message using the .NET framework trace logging system.
A call to System.Diagnostics.Trace.WriteLine(message) will do fine.
I request this because it is the most easy way to find problems when developing Add-Ins for us (there is no console available for an add-in).
By default, System.Diagnostics.Trace.WriteLine, messages are written to the Windows debug output. Those messages are displayed in the Visual Studio debug output window in debug mode, and can also be shown using the sysinternals 'DebugView' tool.
By using the app.config, the user can even log the trace output to other outputs.
Thank you for this great product, much much better than VSTO!