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?
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');");
Happy coding,
Kevin (ITG)
Please login first to submit.