|
@@ -995,7 +995,9 @@ public class ResourceLocalizationService extends CompositeService
|
|
|
try {
|
|
|
req = new LocalResourceRequest(rsrc);
|
|
|
} catch (URISyntaxException e) {
|
|
|
- // TODO fail? Already translated several times...
|
|
|
+ LOG.error(
|
|
|
+ "Got exception in parsing URL of LocalResource:"
|
|
|
+ + rsrc.getResource(), e);
|
|
|
}
|
|
|
LocalizerResourceRequestEvent assoc = scheduled.get(req);
|
|
|
if (assoc == null) {
|
|
@@ -1069,7 +1071,9 @@ public class ResourceLocalizationService extends CompositeService
|
|
|
LOG.error("Inorrect path for PRIVATE localization."
|
|
|
+ next.getResource().getFile(), e);
|
|
|
} catch (URISyntaxException e) {
|
|
|
- //TODO fail? Already translated several times...
|
|
|
+ LOG.error(
|
|
|
+ "Got exception in parsing URL of LocalResource:"
|
|
|
+ + next.getResource(), e);
|
|
|
}
|
|
|
}
|
|
|
|