Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py |
index 23e966170fa62d921847794986ca5ca2186db22d..ebfde5449c6e8744e7b93595cdd7c778bbd9306c 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py |
@@ -334,7 +334,7 @@ class Driver(object): |
line = server_process.read_stdout_line(deadline) |
if server_process.timed_out or server_process.has_crashed(): |
- _log.error('Failed to start the %s process: \n%s' % (server_process.name(), output)) |
+ _log.error('Failed to start the %s process: \n%s', server_process.name(), output) |
return False |
return True |
@@ -389,7 +389,7 @@ class Driver(object): |
pid = int(match.group(1)) if match else None |
self._crashed_pid = pid |
# FIXME: delete this after we're sure this code is working :) |
- _log.debug('%s crash, pid = %s, error_line = %s' % (self._crashed_process_name, str(pid), error_line)) |
+ _log.debug('%s crash, pid = %s, error_line = %s', self._crashed_process_name, str(pid), error_line) |
if error_line.startswith("#PROCESS UNRESPONSIVE - "): |
self._subprocess_was_unresponsive = True |
self._port.sample_process(self._crashed_process_name, self._crashed_pid) |