Current logging threshold that is all about log level(TRACE, DEBUG, INFO, WARN, ERROR and FATAL) is not enough for me. I have a gigabytes of log written from third party libraries into ERROR category in emergency case. I do not want to turn of this logging cause I want to see this problem logs. Most of logs are continuously repeating stack traces. So I want a kind of appender which will
- 1)Skip logs if threshhold(kb/sec) is reaсhed (I mean when we are writing to much logs - we might skip some) or
- 2)Skip stacktraces printing if more then one(n) stacktrace was printed in period of time
Please suggest