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 = {
484484 } ,
485485 } ,
486486 } ,
487+ logging : {
488+ type : 'string' ,
489+ } ,
487490 } ,
488491 type : 'object' ,
489492 } ,
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ export interface NextJsWebpackConfig {
144144}
145145
146146export interface ExperimentalConfig {
147+ logging ?: 'verbose'
147148 appDocumentPreloading ?: boolean
148149 strictNextHead ?: boolean
149150 clientRouterFilter ?: boolean
Original file line number Diff line number Diff line change @@ -1789,7 +1789,7 @@ export default class NextNodeServer extends BaseServer {
17891789 )
17901790 }
17911791 process . stdout . write ( '\n' )
1792- } else {
1792+ } else if ( this . nextConfig . experimental . logging === 'verbose' ) {
17931793 process . stdout . write (
17941794 `- ${ chalk . cyan ( req . method || 'GET' ) } ${ req . url } ${
17951795 res . statusCode
You can’t perform that action at this time.
0 commit comments