Author: nextgens
Date: 2007-03-07 19:41:23 +0000 (Wed, 07 Mar 2007)
New Revision: 12013
Modified:
trunk/apps/Thaw/src/thaw/core/IconBox.java
Log:
Thaw: improve log. messages
Modified: trunk/apps/Thaw/src/thaw/core/IconBox.java
===================================================================
--- trunk/apps/Thaw/src/thaw/core/IconBox.java 2007-03-07 16:03:58 UTC (rev
12012)
+++ trunk/apps/Thaw/src/thaw/core/IconBox.java 2007-03-07 19:41:23 UTC (rev
12013)
@@ -100,14 +100,14 @@
classLoader = daClass.getClassLoader();
if (classLoader == null) {
- Logger.error(new IconBox(), "Icon '"+fileName+"' not
found ! (Class)");
+ Logger.error(new IconBox(), "Icon '"+fileName+"' not
found ! (ClassLoader)");
return null;
}
url = classLoader.getResource(fileName);
if (url == null) {
- Logger.error(new IconBox(), "Icon '"+fileName+"' not
found ! (Class)");
+ Logger.error(new IconBox(), "Icon '"+fileName+"' not
found ! (Resource)");
return null;
}