The content of this section is derived from the content of the following links and is subject to the CC BY 4.0 license.
The following contents can be assumed to be the result of modifications and deletions based on the original contents if not specifically stated.
Options for infrastructure level logging. Generally used for logs unrelated to the Compilation.
boolean
Append lines to the output instead of updating existing output, useful for status messages. This option is used only when no custom console is provided.
boolean
Enable colorful output for infrastructure level logging. This option is used only when no custom console is provided.
Console
Console
Customize the console used for infrastructure level logging.
boolean | RegExp | function(name) => boolean | [string, RegExp, function(name) => boolean]
'false'
Enable debug information of specified loggers such as plugins or loaders. Similar to stats.loggingDebug option but for infrastructure. Defaults to false
.
'none' | 'error' | 'warn' | 'info' | 'log' | 'verbose'
'info'
Enable infrastructure logging output. Similar to (stats.logging)[/config/stats#statslogging] option but for infrastructure. Defaults to 'info'
.
Possible values:
'none'
- disable logging'error'
- errors only'warn'
- errors and warnings only'info'
- errors, warnings, and info messages'log'
- errors, warnings, info messages, log messages, groups, clears. Collapsed groups are displayed in a collapsed state.'verbose'
- log everything except debug and trace. Collapsed groups are displayed in expanded state.NodeJS.WritableStream
process.stderr
Stream used for logging output. Defaults to process.stderr
. This option is used only when no custom console is provided.