added debug output for "Object type or Object type combination not supported" bug.

See also: http://www.yacy-forum.de/viewtopic.php?p=16306#16306

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1568 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
orbiter 2006-02-07 22:48:22 +00:00
parent aa01c78722
commit 785763d070

View File

@ -62,7 +62,7 @@ public abstract class kelondroAbstractOrder implements kelondroOrder {
} else if ((a instanceof String) && (b instanceof String)) {
return compare(((String) a).getBytes(), ((String) b).getBytes());
} else
throw new IllegalArgumentException("Object type or Object type combination not supported");
throw new IllegalArgumentException("Object type or Object type combination not supported: a=" + a + ", b=" + b);
}
}