created proxy for parser backend
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user