aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar scroggo <scroggo@google.com>2016-01-29 07:48:33 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-29 07:48:33 -0800
commit4d9eaea1740568548c7a954fdc3b4f7ee8df1e49 (patch)
treefd83bb16d768a5fc450abc1472cc07cb0b892693 /dm
parent78fc22af41a5118963a8f7253758111b05b9700e (diff)
Print a message when DM finishes
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
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index 715c4cab14..02c66a8808 100644
--- 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;
}