-
Notifications
You must be signed in to change notification settings - Fork 307
Hosting logging needs to use structured logging instead of format strings #597
Comments
The structured part is here: Hosting/src/Microsoft.AspNetCore.Hosting/Internal/HostingLoggerExtensions.cs Lines 241 to 257 in 3ea44c6
ToString is just the fallback. |
Hmm according to the linked bug aspnet/Mvc#3986 the data is formatted via the ToString in the log entry - that still looks wrong. Good to know that the structured data is available, though. |
Some of the loggers don't consume the structured data, they just call ToString. @BrennanConroy? |
Its up to the logger to decide if it wants to use structured data and currently none of our loggers use structured logging anymore. |
Perhaps not, but the formatting to a string needs to be done with InvariantCulture in anything that we ship. Is that in Logging maybe? |
The formatting is happening inline in ToString. |
Ah then I think that should change, no? Just need to pass in the right culture (InvariantCulture). |
Well, it means you can't use the |
Hardly the end of the world 😄 |
E.g. here:
Hosting/src/Microsoft.AspNetCore.Hosting/Internal/HostingLoggerExtensions.cs
Line 269 in 3ea44c6
It's using a formatted string, which means that structured logging doesn't get to see what's in there. It also means that the formatting is being done in the current locale of the thread, which is unlikely to achieve the desired effect.
The logging calls need to instead use structured logging.
The text was updated successfully, but these errors were encountered: