This commit is contained in:
Даниил Пронин 2020-10-11 14:37:34 +03:00 committed by GitHub
commit 0f9f842390
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View file

@ -10,7 +10,7 @@ export default new class VueSocketIOLogger {
info(text, data = '') { info(text, data = '') {
if(this.debug) window.console.info(this.prefix+`%c${text}`, 'color: blue; font-weight: 600', 'color: #333333', data); if(this.debug) window.console.info(this.prefix+`%c${text}`, 'color: blue; font-weight: 600', '', data);
} }
@ -28,7 +28,7 @@ export default new class VueSocketIOLogger {
event(text, data = ''){ event(text, data = ''){
if(this.debug) window.console.info(this.prefix+`%c${text}`, 'color: blue; font-weight: 600', 'color: #333333', data); if(this.debug) window.console.info(this.prefix+`%c${text}`, 'color: blue; font-weight: 600', '', data);
} }