Does any logging library contain any means to limit logging message frequency?
I mean suppose I have a waiting loop and it logs “Nothing done”. How to make next “Nothing done” message would logged only after say 1 second?
I know I can program it myself.
You have to manage this in your code, or you need to write a custom appender (this depends on the logging library you are using)