-
-
Notifications
You must be signed in to change notification settings - Fork 65
.Net 6 Logging is not grouped anymore #136
Comments
For me, webpack progress is also written to logs as error even though there are no errors. |
This is happening for me too. In previous versions, these would not be logged as errors. Since I have a serilog sink on my project to send e-mails for logged errors, I get ~33 emails every time I fire up my project locally. I can reduce it to only one by using:
This just trims out the progress, which I still might want to see in the console output. |
I alleviated the problem by excluding the logs from Serilog with conditional
But after upgrading to @vue/cli-service 5 the logs are not written as error anymore I think, because webpack version upgrade |
Thanks for this, I'll try the upgrade first to see if it's resolved. |
The error logging is occurring because Webpack logs diagnostics (including progress) to stderr by default. You can change the behavior of Webpack 5 by setting the stream option. Nonetheless, this doesn't help with the individual line logging. |
In .Net 3.1 and 5 the logging was grouped into one message. Now each line is an info message from VueCliMiddleWare, it's not good for debugging.
The text was updated successfully, but these errors were encountered: