I'm trying to collect some advices on error logging in java. My log file is huge and going trough it is time consuming, currently I'm grep(ing) my log looking for error(ERROR) pattern, and then looking at line which threw exception then I search/find it and check out the error.
Is there some better way of reading log files more efficiently? Currently my focus is on errors/exceptions only.
I've titled my question wrongly(edit)
I'm not interesting about logging, I'm interested about log processing(post-logging) process, I have the log and I have to get useful information from it(for me errors).