mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-09 23:21:30 -07:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import { WorkersLogger } from 'workers-tagged-logger'
|
|
|
|
export type LogTagHints = {
|
|
// add common tags here so that they show up as hints
|
|
// in `logger.setTags()` and `logger.withTags()`
|
|
url: string
|
|
}
|
|
|
|
export const logger = new WorkersLogger<LogTagHints>()
|