Print more lines of log
authorMatt Corallo <git@bluematt.me>
Tue, 21 May 2019 19:25:52 +0000 (15:25 -0400)
committerMatt Corallo <git@bluematt.me>
Tue, 21 May 2019 19:34:03 +0000 (15:34 -0400)
src/printer.rs

index 0d928b0328b1fa21f46621d8c216ccd3a9d5475d..352dc7e4d895852f8d293561c8c98a65358e3884 100644 (file)
@@ -113,7 +113,7 @@ impl Printer {
                } else {
                        stats.lines.push_back(line);
                }
-               if stats.lines.len() > 50 {
+               if stats.lines.len() > 75 {
                        stats.lines.pop_front();
                }
        }