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 cee170c commit 575abcaCopy full SHA for 575abca
lib/Server.js
@@ -551,8 +551,16 @@ class Server {
551
}
552
});
553
554
- if (this.options.client.logging) {
555
- this.sockWrite([connection], 'logging', this.options.client.logging);
+ console.log('zzzzz');
+ console.log(this.compiler.options.infrastructureLogging.level);
556
+
557
+ const clientLogLevel =
558
+ this.options.client.logging ||
559
+ (this.compiler.options.infrastructureLogging &&
560
+ this.compiler.options.infrastructureLogging.level);
561
562
+ if (clientLogLevel) {
563
+ this.sockWrite([connection], 'logging', clientLogLevel);
564
565
566
if (this.options.hot === true || this.options.hot === 'only') {
0 commit comments