Skip to content

Commit 8980efb

Browse files
Add execution result to summary (#1024)
1 parent 1763654 commit 8980efb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/MetadataDumper.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@ private void logFinalSummary(
296296
linePrinter.println(
297297
"Output, including debugging information, saved to '%s'", outputFileLocation);
298298
}
299+
300+
String stateToPrint = requiredTaskSucceeded ? "SUCCEEDED" : "FAILED";
301+
linePrinter.println("Dumper execution: " + stateToPrint);
299302
});
300303
}
301304
}

0 commit comments

Comments
 (0)