refactor(frontend): 不必要なconsole.logを除去・抑制 (#13400)
* refactor(frontend): 不必要なconsole.logを除去 * Update MkCode.core.vue * Update game.board.vue
This commit is contained in:
parent
f18a31c628
commit
bbbb16795d
3 changed files with 2 additions and 4 deletions
|
@ -52,7 +52,7 @@ async function fetchLanguage(to: string): Promise<void> {
|
||||||
return bundle.id === language || bundle.aliases?.includes(language);
|
return bundle.id === language || bundle.aliases?.includes(language);
|
||||||
});
|
});
|
||||||
if (bundles.length > 0) {
|
if (bundles.length > 0) {
|
||||||
console.log(`Loading language: ${language}`);
|
if (_DEV_) console.log(`Loading language: ${language}`);
|
||||||
await highlighter.loadLanguage(bundles[0].import);
|
await highlighter.loadLanguage(bundles[0].import);
|
||||||
codeLang.value = language;
|
codeLang.value = language;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -54,8 +54,6 @@ const pagination = {
|
||||||
})),
|
})),
|
||||||
};
|
};
|
||||||
|
|
||||||
console.log(Misskey);
|
|
||||||
|
|
||||||
const headerActions = computed(() => []);
|
const headerActions = computed(() => []);
|
||||||
|
|
||||||
const headerTabs = computed(() => []);
|
const headerTabs = computed(() => []);
|
||||||
|
|
|
@ -248,7 +248,7 @@ if (game.value.isStarted && !game.value.isEnded) {
|
||||||
crc32: crc32.toString(),
|
crc32: crc32.toString(),
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.desynced) {
|
if (res.desynced) {
|
||||||
console.log('resynced');
|
if (_DEV_) console.log('resynced');
|
||||||
restoreGame(res.game!);
|
restoreGame(res.game!);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue