1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 10:10:46 +00:00

android: downgrading ls command log to debug

The format of an ls command is an implementation detail rather than
something of immediate interest to the user. Debug level is more
appropriate than info for this kind of message.
This commit is contained in:
Sergei Trofimov 2017-05-12 10:45:42 +01:00
parent 92d9e690f0
commit 97a89970d0

View File

@ -189,7 +189,7 @@ class AdbConnection(object):
self.ls_command = 'ls -1'
else:
self.ls_command = 'ls'
logger.info("ls command is set to {}".format(self.ls_command))
logger.debug("ls command is set to {}".format(self.ls_command))
def __init__(self, device=None, timeout=None, platform=None):
self.timeout = timeout if timeout is not None else self.default_timeout