-
Notifications
You must be signed in to change notification settings - Fork 17
Debugging issues
Kevin B edited this page Jul 23, 2017
·
7 revisions
AutoDI and Fody both output a lot of diagnostic information on build. If you are not seeing this in the Output window try turning up the MSBuild output verbosity. I find setting the output level to Detailed to be sufficient.
AutoDI supports additional configuration controlling how much debug output it produces. If you are trying to debug an issue with the container I suggest turning up the log level to Verbose.
<AutoDI.Container DebugLogLevel="Verbose" />The possible values are:
- None - no debug output will be produced
- Default - this is the normal setting
- Verbose - diagnostic level output, useful for debugging issues.
This setting will have no affect on warnings or errors.