AppStoreWidgetBoilerplate - output from logger.debug is not visible

0
I use the Yeoman generator to create custom Mendix widgets, but the logger.debug statements never show up in the browser console. In older posts I read that djConfig.isDebug=true must be set for this, however the Test.mpr does not have a theme with the .html file.  Is there any other way to do this (other than using console.log instead), and / or can the Test.mpr be updated to set this to debug by default? Thanks
asked
1 answers
3

You can also open your browser console (in Chrome: Ctrl + Shift + i) and enter the following command to enable logging output:

logger.level(logger.ALL);
answered