Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.0.0SDK-beta
-
None
Description
The substitution of values in UIMA logging does not work consistently. E.g. for the following code
UIMAFramework.getLogger().warn("Skipping adding \"{0}\" to URLs", p);
Depending on the configured logging backend, I get different messages. E.g. with SLF4J, I get the broken:
2017-09-08 14:45:42 WARN [main] (Misc) - Skipping adding "{0}" to URLs
while with what (I suppose) is the default UIMA logger used in the uimaFIT maven plugin, I get the correct
[WARNING] Skipping adding "" to URLs