-
-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log messages use concatenated strings #265
Comments
This could be quite the undertaking, but PRs are always welcome 👍🏻 |
I can imagine it would be quite some work to do. No promises, but would you be open to partial fixes? Maybe we (I'm writing on behalf of my workplace) could identify the most problematic spots and fix those if nothing else. |
Partial is always better than nothing, logging fixes can be incremental. As Spring.NET currently uses Common.Logging, will that be a problem? |
It's on my mind, but I'm not sure ATM, especially in our case as it's not really clear to me to what extent Common.Logging plays nice with NLog 5, it would need to be tested. We'll see what can be done. |
I can take look how switching to Microsoft logging abstraction would work when I have the time, Common.Logging is generally a bit of a dead end. |
@nzp |
Awesome! Thank you very much for acting on this so quickly! We'll prepare a PR for the template issues, at least the ones that bother us most, as soon as possible. |
It seems that Spring.NET universally logs messages using string concatenation and interpolation instead of log formatting templates. This leads to problems when applications use structured logging in general, and in particular when raw message templates are logged.
For example, if we have an NLog layout (snippet) such as this:
A resulting log entry would be:
instead of the expected:
This makes template logging unusable for Spring logs (one reason to do this would be to easily categorize messages produces by a particular logging call), but, more importantly, could lead to unexpected sensitive data leakages (e.g. database connection string being logged unsanitized via the logged template because the client app does not expect actual values popping up here).
The text was updated successfully, but these errors were encountered: