Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came across code written by somebody which caught some exception and tried logging that as ERROR without printing stacktrace. I expected below usage

log.error("message", exception);

However it was

log.error("message");

How to catch such coding errors by static code analyzers or any such tool?

share|improve this question
Maybe FindBugs has a rule for that (or lets you define one). – Thilo Nov 24 '11 at 6:40

2 Answers

up vote 0 down vote accepted

You can use Eclipse and do a File Search over your Workspace with Regular Expression like this:

^.*\.(error|debug|info)\([^,]*\);$

This is the best option as you will see the results in the Search panel and be able to jump to the files/lines directly with double-click.

Also a simple editor like Notepad++ can do the job with its Find in Files option with Regular expressions enabled. Unfortunately, the Notepad++ is not able to do a regex OR like (this|that) so to find log.debug(...)s and log.info(...)s you would need to replace the error keyword manually. Just select the directory of your project and use a pattern like this:

^.*\.error\([^,]*\);$
share|improve this answer

You can find all usages for Log.error(String) in your IDE and check they are not in a catch Exception block. This is not the sort of thing you should be having to check regularly, i.e. it is better to learn from your mistakes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.