artem
✅ How do you log and trace requests in big production applications?
I've recently realized that I don't really know how to log data (other then writing it to a file or console). I've also heard you can trace back a request using logging (or smth). I want to make a small project that would use "better" logging, yet I dont know where to start, what technologies to use, how it works, etc. Pls give me any info/hits/tips on what you use in production
27 replies
Is it ok to leave `NotImplementedException` if method doesn't suppose to be used?
I have class that implements interface with two methods
Convert
and ConvertBack
. I use only Convert
so I implemented it. Is it ok to leave it as it is now? Can it somehow backfire? Class link - https://github.com/Cootz/PasswordManager/pull/46/files#diff-52f61f5a8d524ef2eb720907cf622ef47d228591389cf4aebb09f85d7a493bed3 replies