diff options
author | mtklein <mtklein@chromium.org> | 2016-03-17 11:58:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-17 11:58:11 -0700 |
commit | c9a99872274ab63f2130caeccc75a2f52b8677a3 (patch) | |
tree | cdfd298a05fa5eadfdaac2f926f44b687c1c1b6b /dm | |
parent | 0e1853c89615d14d0d03c87c7e0c604e5285cc54 (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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |