make logger return empty string

This commit is contained in:
Nariman Jelveh 2024-08-20 19:05:34 -07:00
parent a002ad08e5
commit 5caf59f1bc

View File

@ -39,7 +39,8 @@
// something like this was also done in backend and it proved useful.
(scope => {
globalThis.logger = {
info: (...a) => console.log('%c[INIT/INFO]', 'color: #4287f5', ...a),
info: (...a) => {},
// info: (...a) => console.log('%c[INIT/INFO]', 'color: #4287f5', ...a),
};
})(globalThis);
logger.info('start -> blocking initialization');