File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -484,6 +484,9 @@ const configSchema = {
484
484
} ,
485
485
} ,
486
486
} ,
487
+ logging : {
488
+ type : 'string' ,
489
+ } ,
487
490
} ,
488
491
type : 'object' ,
489
492
} ,
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ export interface NextJsWebpackConfig {
144
144
}
145
145
146
146
export interface ExperimentalConfig {
147
+ logging ?: 'verbose'
147
148
appDocumentPreloading ?: boolean
148
149
strictNextHead ?: boolean
149
150
clientRouterFilter ?: boolean
Original file line number Diff line number Diff line change @@ -1789,7 +1789,7 @@ export default class NextNodeServer extends BaseServer {
1789
1789
)
1790
1790
}
1791
1791
process . stdout . write ( '\n' )
1792
- } else {
1792
+ } else if ( this . nextConfig . experimental . logging === 'verbose' ) {
1793
1793
process . stdout . write (
1794
1794
`- ${ chalk . cyan ( req . method || 'GET' ) } ${ req . url } ${
1795
1795
res . statusCode
You can’t perform that action at this time.
0 commit comments