From: scroggo Date: Fri, 29 Jan 2016 15:48:33 +0000 (-0800) Subject: Print a message when DM finishes X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~129^2~2337 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d9eaea1740568548c7a954fdc3b4f7ee8df1e49;p=platform%2Fupstream%2FlibSkiaSharp.git 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 --- diff --git a/dm/DM.cpp b/dm/DM.cpp index 715c4ca..02c66a8 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; }