Skip to content

Commit ac516c1

Browse files
author
Gonzalo Gallotti Vazquez
committed
GEN029-5258 fix: Do not fail on No serializer found for class java.io.PrintWriter and no properties discovered to create BeanSerializer - Disable log.
1 parent 1af2069 commit ac516c1

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
@@ -63,7 +63,8 @@ protected void fromjson(String json){
6363
mapper.readerForUpdating(instance).readValue(json);
6464
}
6565
catch(Exception e) {
66-
log.error("Error executing FromJson() method", e);
66+
//log.error("Error executing FromJson() method", e);
67+
// GEAI: GG: Disable this log.
6768
}
6869
}
6970
}

0 commit comments

Comments
 (0)