| Index: build/android/devil/android/device_utils.py
|
| diff --git a/build/android/devil/android/device_utils.py b/build/android/devil/android/device_utils.py
|
| index 6844bf0502050fea4ffe4388a0f92131af64d582..41b86fbc6b4541b60277b019ce34abbfd603155e 100644
|
| --- a/build/android/devil/android/device_utils.py
|
| +++ b/build/android/devil/android/device_utils.py
|
| @@ -1985,16 +1985,11 @@ class DeviceUtils(object):
|
| raise device_errors.CommandFailedError(
|
| 'Could not find memory peak value for pid %s', str(pid))
|
|
|
| - @decorators.WithTimeoutAndRetriesFromInstance()
|
| - def GetLogcatMonitor(self, timeout=None, retries=None, *args, **kwargs):
|
| + def GetLogcatMonitor(self, *args, **kwargs):
|
| """Returns a new LogcatMonitor associated with this device.
|
|
|
| Parameters passed to this function are passed directly to
|
| |logcat_monitor.LogcatMonitor| and are documented there.
|
| -
|
| - Args:
|
| - timeout: timeout in seconds
|
| - retries: number of retries
|
| """
|
| return logcat_monitor.LogcatMonitor(self.adb, *args, **kwargs)
|
|
|
|
|