Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py

Issue 2188623002: Change logging statements to not use the "%" operator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py
index a3df1cb688d6be3c5233954660bff8949811f8ed..48a8e4d0b82fe7361bbe3405af96f552f2a659ee 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py
@@ -381,12 +381,12 @@ class ServerProcess(object):
while self._proc.poll() is None and time.time() < deadline:
time.sleep(0.01)
if self._proc.poll() is None:
- _log.warning('stopping %s(pid %d) timed out, killing it' % (self._name, self._proc.pid))
+ _log.warning('stopping %s(pid %d) timed out, killing it', self._name, self._proc.pid)
if self._proc.poll() is None:
self._kill()
killed = True
- _log.debug('killed pid %d' % self._proc.pid)
+ _log.debug('killed pid %d', self._proc.pid)
# read any remaining data on the pipes and return it.
if not killed:

Powered by Google App Engine
This is Rietveld 408576698