Skip to content

Commit

Permalink
Merge branch 'fix/MID-4177' into support-3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 4, 2017
2 parents 6eb8f5b + 7902e0c commit 0d8af66
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -458,9 +458,9 @@ public static String prettyPrintForReport(Object value) {

// 2. Default to PrettyPrinter.prettyPrint
String str = PrettyPrinter.prettyPrint(value);
if (str.length() > 1000) {
return str.substring(0, 1000);
}
// if (str.length() > 1000) {
// return str.substring(0, 1000);
// }
return str;

}
Expand Down

0 comments on commit 0d8af66

Please sign in to comment.