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) |