Recommendation from UI5 : to don't use console.log("message")
Proposition from UI5: use jQuery.sap.log.debug("message") instead, documentation here
expected result : see the "message" in the console from chrome debugger"
actual result : Don't see the "message" in the console"
on my controller :
onInit: function(){
jQuery.sap.log.debug('onInit fired'); // display nothing in chrome console
console.log('onInit fired'); // display "onInit fired" in chrome console
},
Does someone has a solution or idea for solve this problem ?
Did you set the log level to DEBUG?
If not try to add :
jQuery.sap.log.setLevel(jQuery.sap.log.Level.DEBUG)
Also, is there any particular reason you are using 1.38 and not something more recent?