Commit e55d26d2 authored by Andrew Wright's avatar Andrew Wright Committed by andrew

better logging


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1393 b35dd754-fafc-0310-a699-88a17e54d16e
parent 0ecfe03a
......@@ -106,7 +106,9 @@ public class SequenceManager {
JiveID id = o.getClass().getAnnotation(JiveID.class);
if(id == null) {
throw new IllegalArgumentException("Annotation JiveID must be defined in the class");
Log.error("Annotation JiveID must be defined in the class "+o.getClass());
throw new IllegalArgumentException(
"Annotation JiveID must be defined in the class "+o.getClass());
}
return nextID(id.value());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment