Github user anew commented on a diff in the pull request:
https://github.com/apache/incubator-tephra/pull/62#discussion_r139744215
--- Diff:
tephra-hbase-compat-1.1-base/src/main/java/org/apache/tephra/hbase/txprune/InvalidListPruningDebug.java
---
@@ -56,15 +59,18 @@
public class InvalidListPruningDebug {
private static final Logger LOG =
LoggerFactory.getLogger(InvalidListPruningDebug.class);
private static final Gson GSON = new Gson();
--- End diff --
maybe better to use a pretty-printing Gson?
```
new GsonBuilder().setPrettyPrinting().create();
```
---