1
0
forked from GitHub/gf-core

reduced log level if no param descriptions are present

This commit is contained in:
hdaniels
2005-06-22 14:57:02 +00:00
parent 8d79dd035a
commit 1f193ff830

View File

@@ -113,7 +113,7 @@ class Printname {
try {
name = (String)this.paramNames.get(n);
} catch (ArrayIndexOutOfBoundsException e) {
subcatLogger.warning(e.getLocalizedMessage());
subcatLogger.fine(e.getLocalizedMessage());
}
return name;
}
@@ -393,7 +393,7 @@ class Printname {
+ "<dd>" + this.paramTexts.get(which) + "</dd>";
return result;
} catch (ArrayIndexOutOfBoundsException e) {
subcatLogger.warning(e.getLocalizedMessage());
subcatLogger.fine(e.getLocalizedMessage());
return "";
}