Bug 1762948 - Log Android AVD path when not found. r=mhentges

Differential Revision: https://phabricator.services.mozilla.com/D142862
This commit is contained in:
Agi Sferro 2022-04-04 19:58:47 +00:00
Родитель b876849eb8
Коммит 8339d7ee88
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -652,6 +652,7 @@ class AndroidEmulator(object):
if os.path.exists(self.avd_path):
_log_debug("AVD found at %s" % self.avd_path)
return True
_log_warning("Could not find AVD at %s" % self.avd_path)
return False
def start(self, gpu_arg=None):