aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-03-17 11:58:11 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-17 11:58:11 -0700
commitc9a99872274ab63f2130caeccc75a2f52b8677a3 (patch)
treecdfd298a05fa5eadfdaac2f926f44b687c1c1b6b /dm
parent0e1853c89615d14d0d03c87c7e0c604e5285cc54 (diff)
just write the verbose log file any time we have a --writePath
oughta fix the Android bots TBR=bungeman@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1813933002 Review URL: https://codereview.chromium.org/1813933002
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index 3a7ba77a3d..24c47992e3 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -1311,7 +1311,7 @@ int dm_main();
int dm_main() {
setup_crash_handler();
- if (FLAGS_verbose && !FLAGS_writePath.isEmpty()) {
+ if (!FLAGS_writePath.isEmpty()) {
sk_mkdir(FLAGS_writePath[0]);
gVLog = freopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w", stderr);
}