commit | 77a85ea5d55e6f4e47e753cec594f15091499c18 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Jul 30 12:26:31 2019 -0700 |
committer | Elliott Hughes <enh@google.com> | Tue Jul 30 12:26:31 2019 -0700 |
tree | 5344ae6da44a87ce8f4a0cb6a02eff3c11601377 | |
parent | 751f337f1481cb2c470f8d7d4e4c874dc7468e62 [diff] |
Allow overriding the log path. Bug: https://issuetracker.google.com/112588493 Test: manual Change-Id: Ic273d46544479332b8e031f30feadd1840f2d653
diff --git a/adb/adb_utils.cpp b/adb/adb_utils.cpp index cf5fbc8..d1910f1 100644 --- a/adb/adb_utils.cpp +++ b/adb/adb_utils.cpp
@@ -320,6 +320,10 @@ } std::string GetLogFilePath() { + // https://issuetracker.google.com/112588493 + const char* path = getenv("ANDROID_ADB_LOG_PATH"); + if (path) return path; + #if defined(_WIN32) const char log_name[] = "adb.log"; WCHAR temp_path[MAX_PATH];