Enable Debugging and Showing Debug Monitor

This section describes the enabling the debug mode.

Enable debugging property DebugMode in FndConnection

Ifs.Fnd.AccessProvider.FndConnection conn = new Ifs.Fnd.AccessProvider.FndConnection("connectString", "user", "pw");
conn.DebugSettings.DebugMode = true;

Add reference to Ifs.Fnd.Diagnostics.dll and start debug monitor. If you have not enabled debug mode (as above) you will not be shown information in the debug monitor.

FndDebugSettings ds = new FndDebugSettings();
ds.ServerTraceEnabled = true;
Ifs.Fnd.Diagnostics.FndDebugMonitor.StartDebugMonitor(ds);