token count for search

This commit is contained in:
sebseb7
2026-04-04 21:51:52 +02:00
parent 92b313fa79
commit d2920fd39a
10 changed files with 477 additions and 30 deletions

View File

@@ -19,9 +19,6 @@ function createSimpleBroadcast() {
const timestamp = new Date().toLocaleTimeString();
const prefix = type === 'error' ? '❌' : type === 'warning' ? '⚠️' : type === 'success' ? '✅' : '';
console.log(`[${timestamp}] ${prefix} ${message}`);
if (data) {
console.log(` Data: ${JSON.stringify(data, null, 2)}`);
}
};
}