Files
hub-monorepo/packages/hub-nodejs/examples/replicate-data-postgres/log.ts
Shane da Silva cc2f5a4fae Add syncing/replication example for Postgres (#938)
Provide a working end-to-end example of syncing data from hubs to a
Postgres database.

This should work with no additional dependencies besides what you
install with `yarn install` and Docker.
2023-05-05 09:56:48 -07:00

6 lines
92 B
TypeScript

import { pino } from 'pino';
export const log = pino();
export type Logger = pino.Logger;