You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You cannot trace to stdout.
It is only possible to trace to file or Debug.
Maybe line 709 should in ApplicationConfiguration.cs should be replace with:
You cannot trace to stdout.
It is only possible to trace to file or Debug.
Maybe line 709 should in ApplicationConfiguration.cs should be replace with:
`
#if DEBUG
Utils.SetTraceOutput(Utils.TraceOutput.DebugAndFile);
#else
Utils.SetTraceOutput(Utils.TraceOutput.StdOutAndFile);
#endif
`
The text was updated successfully, but these errors were encountered: