Skip to content

Commit f47e235

Browse files
author
Gonzalo Gallotti Vazquez
committed
GEN029-5258 disable log to avoid flooding due to known issue with PrintWriter serialization
1 parent 2241744 commit f47e235

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/src/main/java/com/genexus/GxUserType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ protected Object getJsonObjectFromHashMap(Object userType) {
4747
return new JSONObjectWrapper(jsonString);
4848

4949
} catch (Exception e) {
50-
log.error("Could not create Json Object", e);
50+
//GEN029-5258 disable log to avoid flooding due to known issue with PrintWriter serialization
51+
//log.error("Could not create Json Object", e);
5152
return new JSONObjectWrapper(); // return empty object instead of null
5253
}
5354
}

0 commit comments

Comments
 (0)