Author: vmassol
Date: 2007-12-01 20:43:25 +0100 (Sat, 01 Dec 2007)
New Revision: 6222
Modified:
xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/web/XWikiURLFactoryServiceImpl.java
Log:
Fix typo in log + improved logs slightly
Modified:
xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/web/XWikiURLFactoryServiceImpl.java
===================================================================
---
xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/web/XWikiURLFactoryServiceImpl.java
2007-12-01 19:35:38 UTC (rev 6221)
+++
xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/web/XWikiURLFactoryServiceImpl.java
2007-12-01 19:43:25 UTC (rev 6222)
@@ -61,13 +61,13 @@
{
try
{
- LOG.debug("Using custom url factory: " + urlFactoryClassName);
+ LOG.debug("Using custom url factory ["+ urlFactoryClassName +
"]");
Class urlFactoryClass = Class.forName(urlFactoryClassName);
factoryMap.put(factoryMode, urlFactoryClass);
}
catch (Exception e)
{
- LOG.error("Faiiled to load custom url factory class: " +
urlFactoryClassName);
+ LOG.error("Failed to load custom url factory class [" +
urlFactoryClassName + "]");
}
}
}
@@ -83,7 +83,7 @@
}
catch (Exception e)
{
- LOG.error("Failed to get construct url factory", e);
+ LOG.error("Failed to create url factory", e);
}
return urlf;
}
_______________________________________________
notifications mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/notifications