refactor(ckeditor5): remove unused method

This commit is contained in:
Elian Doran 2025-05-29 13:25:31 +03:00
parent e70d2a25fa
commit 2309863d64
No known key found for this signature in database

View File

@ -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 + ": ");