Hi,
We have looked into this issue. This function is not exactly a console output message ---- it's a debugger call and its implementation is closed tied to the built in debugger in the way of:
1. Debugger must be active in order to acquire the stack trace (since stack trace is acquired through the debugger interface);
2. When debugger is active, the output is sent to the debugger;
This means when debugger is not active, you will not get the stack trace (as you have observed), and when debugger is active, you won't get any output at all (because the output would be sent to the debugger). To verify this, you can start the built-in debugger interface by following these steps:
https://www.essentialobjects.com/doc/webbrowser/advanced/debug.aspxHope this helps. Please feel free to let us know if you still have any questions.
Thanks!