mirror of
https://framagit.org/framasoft/peertube/search-index/
synced 2025-01-22 15:30:18 +01:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import * as Pino from 'pino'
|
|
import { CONFIG } from '../initializers/constants'
|
|
|
|
const pino = Pino({
|
|
prettyPrint: true,
|
|
level: CONFIG.LOG.LEVEL
|
|
})
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
pino as logger
|
|
}
|