Log hotkey?

Answered
0
0

Do I remember that there is a hotkey to show a log window in WiseJ apps?  And if so, what is the hotkey to show it, and how do I push log events to it?

  • You must to post comments
Best Answer
0
0

Hi Andrew,

The hotKey is F7,

or with C#

Application.ShowConsole = true;

And for logging Wisej use http://qooxdoo.org/qxl.apiviewer/latest/#qx.log.Logger

test case:

Application.Eval("Wisej.Core.log('info','cooool-124');"); // you can use "info", "warn", "error", "debug" OR
Application.Eval("Wisej.Core.logWarning('cooool-warning');");
Application.Eval("Wisej.Core.logInfo('cooool-info');");
Application.Eval("Wisej.Core.logError('cooool-error');");
Application.Eval("Wisej.Core.logDebug('cooool-logDebug');");

When debug mod is off, Wisej unregisters the console,

Happy coding,

Kevin (ITG)

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.