Varargified log calls.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5697 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2009-03-26 00:02:19 +00:00
parent 647a25dfdc
commit 688f2580ed
46 changed files with 231 additions and 272 deletions
@@ -81,12 +81,11 @@ public class ClassUtil
} catch (NoSuchMethodException nsme) {
// nothing to do here but fall through and return null
log.info("No such method [name=" + name + ", tclass=" + tclass.getName() +
", args=" + StringUtil.toString(args) + ", error=" + nsme + "].");
log.info("No such method", "name", name, "tclass", tclass.getName(), "args", args,
"error", nsme);
} catch (SecurityException se) {
log.warning("Unable to look up method? [tclass=" + tclass.getName() +
", mname=" + name + "].");
log.warning("Unable to look up method?", "tclass", tclass.getName(), "mname", name);
}
return meth;