Reduce output in process pool report mode
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 53ab5f2..177bc65 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Change Log for `process_runner`
 
+## 4.1.2
+
+* Reduces process pool output in "report" mode by not printing individual completions.
+
 ## 4.1.1
 
 * Adds missing dependency on args package to allow global activate.
diff --git a/example/main.dart b/example/main.dart
index ebef3e0..8d5adc0 100644
--- a/example/main.dart
+++ b/example/main.dart
@@ -304,9 +304,6 @@
   }).toList();
   try {
     await for (final WorkerJob done in pool.startWorkers(jobs)) {
-      if (printReport) {
-        stderr.writeln('\nFinished job ${done.name}');
-      }
       if (printStdout) {
         stdout.write(done.result.stdout);
       }
diff --git a/pubspec.yaml b/pubspec.yaml
index 8af2701..6d1a6ca 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -3,7 +3,7 @@
 # found in the LICENSE file.
 
 name: process_runner
-version: 4.1.1
+version: 4.1.2
 description: A process invocation astraction for Dart that manages a multiprocess queue.
 homepage: https://github.com/google/process_runner