Bug 1040079 - Change logging level for chmod operations for mozdevice. DONTBUILD. r=wlach

This commit is contained in:
Armen Zambrano Gasparnian 2015-01-27 15:20:09 -05:00
Родитель 86f876d02e
Коммит 6601f54e8c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -620,10 +620,10 @@ class DeviceManagerADB(DeviceManager):
self._checkCmd(["shell", "chmod", mask, remoteEntry])
self._logger.info("chmod %s" % remoteEntry)
self._checkCmd(["shell", "chmod", mask, remoteDir])
self._logger.info("chmod %s" % remoteDir)
self._logger.debug("chmod %s" % remoteDir)
else:
self._checkCmd(["shell", "chmod", mask, remoteDir.strip()])
self._logger.info("chmod %s" % remoteDir.strip())
self._logger.debug("chmod %s" % remoteDir.strip())
def _verifyADB(self):
"""