DS-2833: Fixing a log message in case a request Parameter is null.

This commit is contained in:
Pascal-Nicolas Becker
2015-10-30 12:44:29 +01:00
parent 387ee1c1af
commit 3460276b7e

View File

@@ -259,7 +259,7 @@ public class Util {
// at least log this error to make debugging easier
// do not silently return null only.
log.warn("Unable to recoginze UUID from String \""
+ val.trim() + "\". Will return null.", e);
+ val + "\". Will return null.", e);
// Problem with parameter
return null;
}