mirror of
https://github.com/ARM-software/devlib.git
synced 2025-07-10 07:42:42 +01: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:
@ -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
|
||||
|
Reference in New Issue
Block a user