refactor(ckeditor5): remove unused method

pull/2055/head
Elian Doran 2025-05-29 13:25:31 +07:00
parent e70d2a25fa
commit 2309863d64
No known key found for this signature in database
1 changed files with 0 additions and 5 deletions

@ -359,11 +359,6 @@ if (debugLevel >= debugLevels.indexOf("warn")) {
warn = console.warn.bind(console, tag + ": ");
}
let info = function (...args: unknown[]) {};
if (debugLevel >= debugLevels.indexOf("info")) {
info = console.info.bind(console, tag + ": ");
}
let log = function (...args: unknown[]) {};
if (debugLevel >= debugLevels.indexOf("log")) {
log = console.log.bind(console, tag + ": ");