We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2f7f4 commit 261e095Copy full SHA for 261e095
src/express-app/app.ts
@@ -53,15 +53,17 @@ export async function startApp<
53
minLength: process.env.LOG_BUFFER ? Number(process.env.LOG_BUFFER) : undefined,
54
});
55
const logger = shouldPrettyPrint
56
- ? pino({
57
- transport: {
58
- destination,
59
- target: 'pino-pretty',
60
- options: {
61
- colorize: true,
+ ? pino(
+ {
+ transport: {
+ target: 'pino-pretty',
+ options: {
+ colorize: true,
62
+ },
63
},
64
- })
65
+ destination,
66
+ )
67
: pino(
68
{
69
formatters: {
0 commit comments