created proxy for parser backend

This commit is contained in:
2025-05-22 23:31:17 +05:00
parent 9faf3f7618
commit 8e4ce66cc4
14 changed files with 146 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
'server'
const originalLog = console.log
console.log = (message?: any, ...optionalParams: any[]) => {
const now = new Date()
const timestamp = now.toTimeString().split(' ')[0] // hh:mm:ss
originalLog(`[${timestamp}] ${message}`, ...optionalParams)
}