Mercurial > 510ConnectbotMonitor
changeset 20:943df7400741
enable some debug logging
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 08 Jul 2014 09:14:29 -0700 |
parents | b0475db2bb94 |
children | 665324c9716e |
files | src/com/five_ten_sg/connectbot/monitor/MonitorService.java |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/monitor/MonitorService.java Thu Jul 03 08:40:34 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/monitor/MonitorService.java Tue Jul 08 09:14:29 2014 -0700 @@ -342,22 +342,22 @@ public void teInit(int connection, char[] buf) { String fn = new String(buf); Log.i(TAG, String.format("teInit %d file %s", connection, fn)); - //printer(String.format("init %d %s", connection, fn)); + printer(String.format("init %d %s", connection, fn)); } public void teActivate(int connection, int lines, int columns, char[] buf) { Log.i(TAG, String.format("teActivate %d", connection)); - //printer(String.format("activate %d lines %d columns %d b.len %d", connection, lines, columns, buf.length)); + printer(String.format("activate %d lines %d columns %d b.len %d", connection, lines, columns, buf.length)); } public void teKeyState(int connection, boolean down) { String d = (down) ? "yes" : "no"; Log.i(TAG, String.format("teKeyState %d isdown %s", connection, d)); - //printer(String.format("keystate %d isdown %s", connection, d)); + printer(String.format("keystate %d isdown %s", connection, d)); } public void teCursorMove(int connection, int l, int c) { - //Log.i(TAG, String.format("teCursorMove %d line %d column %d", connection, l, c)); + Log.i(TAG, String.format("teCursorMove %d line %d column %d", connection, l, c)); } public void teScreenChange(int connection, int lines, int columns, char[] buf) {