javascript - How to enable console.log in ExtJs -


i use extjs , include framework <script src="ext/ext-dev.js"></script>.

despite fact extjs documentation makes extensive use of console.log, function not working, because somehow redefined empty function.

how can enable console.log in extjs ? there configuration option need set on application loading ? or there function used log console ? (i found ext.log, not log console neither.)

extjs redefining console.log. outsite of extjs, alert(console.log); output function log() { [native code ] }, inside of extjs, output function log() {}, , console.log('message'); nothing.

extjs no such thing, can see visiting example extjs api docs, run on extjs, opening console , running console.log(). else in code must causing this.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -