mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-08 20:47:11 +03:00
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
window["SBLogs"] = {
|
|
debug: [],
|
|
warn: []
|
|
};
|
|
|
|
export function logDebug(message: string) {
|
|
window["SBLogs"].debug.push(`[${new Date().toISOString()}] ${message}`);
|
|
}
|
|
|
|
export function logWarn(message: string) {
|
|
window["SBLogs"].warn.push(`[${new Date().toISOString()}] ${message}`);
|
|
} |