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

Unified Diff: client/bin/factory_ui

Issue 6736025: autotest/factory: improve message feedback on UI (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 9 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
« no previous file with comments | « client/bin/factory.py ('k') | client/cros/gooftools.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/factory_ui
diff --git a/client/bin/factory_ui b/client/bin/factory_ui
index 391124de1ac4e28fa354596bcf02638535f05526..bd23f6303701ff280c1c1aa33667df08e9416935 100755
--- a/client/bin/factory_ui
+++ b/client/bin/factory_ui
@@ -78,11 +78,11 @@ class Console:
xterm at a strategic location, and running tail against the log.'''
def __init__(self, allocation):
- xterm_coords = '135x14+%d+%d' % (allocation.x, allocation.y)
+ xterm_coords = '145x13+%d+%d' % (allocation.x, allocation.y)
factory.log('xterm_coords = %s' % xterm_coords)
xterm_opts = ('-bg black -fg lightgray -bw 0 -g %s' % xterm_coords)
xterm_cmd = (('urxvt %s -e bash -c ' % xterm_opts).split() +
- ['tail -f %s | grep "FACTORY\\|GFT"' % factory.LOG_PATH])
+ ['tail -f "%s"' % factory.CONSOLE_LOG_PATH])
factory.log('xterm_cmd = %s' % xterm_cmd)
self._proc = subprocess.Popen(xterm_cmd)
« no previous file with comments | « client/bin/factory.py ('k') | client/cros/gooftools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698