Geräte-Agent für lokale Scan-Aufträge anlegen
This commit is contained in:
30
agents/fedeo-device-agent/src/logger.ts
Normal file
30
agents/fedeo-device-agent/src/logger.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
const timestamp = () => new Date().toISOString()
|
||||
|
||||
export const log = {
|
||||
info(message: string, meta?: unknown) {
|
||||
if (meta === undefined) {
|
||||
console.log(`[${timestamp()}] INFO ${message}`)
|
||||
return
|
||||
}
|
||||
|
||||
console.log(`[${timestamp()}] INFO ${message}`, meta)
|
||||
},
|
||||
|
||||
warn(message: string, meta?: unknown) {
|
||||
if (meta === undefined) {
|
||||
console.warn(`[${timestamp()}] WARN ${message}`)
|
||||
return
|
||||
}
|
||||
|
||||
console.warn(`[${timestamp()}] WARN ${message}`, meta)
|
||||
},
|
||||
|
||||
error(message: string, meta?: unknown) {
|
||||
if (meta === undefined) {
|
||||
console.error(`[${timestamp()}] ERROR ${message}`)
|
||||
return
|
||||
}
|
||||
|
||||
console.error(`[${timestamp()}] ERROR ${message}`, meta)
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user