Print a message when DM finishes
authorscroggo <scroggo@google.com>
Fri, 29 Jan 2016 15:48:33 +0000 (07:48 -0800)
committerCommit bot <commit-bot@chromium.org>
Fri, 29 Jan 2016 15:48:33 +0000 (07:48 -0800)
When running from the command line, it is obvious when DM finishes,
since it brings the prompt back up. But in XCode, it just sits
there, so my glance doesn't let me know that it's finished. Make
it more obvious that DM is done.
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1650113002

Review URL: https://codereview.chromium.org/1650113002

dm/DM.cpp

index 715c4ca..02c66a8 100644 (file)
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -1167,6 +1167,7 @@ int dm_main() {
     #ifdef SK_PDF_IMAGE_STATS
     SkPDFImageDumpStats();
     #endif  // SK_PDF_IMAGE_STATS
+    SkDebugf("Finished!\n");
     return 0;
 }