From 97a89970d027f6e15e8a1606757638c88040ced2 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Fri, 12 May 2017 10:45:42 +0100 Subject: [PATCH] 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. --- devlib/utils/android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devlib/utils/android.py b/devlib/utils/android.py index 5832553..bd49ea4 100644 --- a/devlib/utils/android.py +++ b/devlib/utils/android.py @@ -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