You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that there are supposed to be a bunch of messages printed out to console during the initialization of the moesif-browser-js client. No messages are printed to the console regardless of setting debug: true in initialization options. This happens both when using the library through npm or a CDN.
The text was updated successfully, but these errors were encountered:
actually, this is by design. The debug option isn't available on the optimized code, since we use very aggressive optimization to minimize the code size for the front end. So if you clone this repo, then edit, src/config.js, to set debug to true, then run npm run build to recompile and build everything, the debug flag would be on. Then that src/config.js debug is set to false, the aggressive compression algorithm removes all code regarding to print lines.
I have noticed that there are supposed to be a bunch of messages printed out to console during the initialization of the
moesif-browser-js
client. No messages are printed to the console regardless of settingdebug: true
in initialization options. This happens both when using the library through npm or a CDN.The text was updated successfully, but these errors were encountered: