Mercurial > hg > RemoteEditor > REPSessionManager
comparison rep/ServerMainLoop.java @ 450:21cb16b7f3df
block message in Editor.write()
author | one |
---|---|
date | Thu, 23 Sep 2010 18:15:37 +0900 |
parents | 3819dec4641e |
children | c22f6833d736 |
comparison
equal
deleted
inserted
replaced
449:89a326696c54 | 450:21cb16b7f3df |
---|---|
126 */ | 126 */ |
127 @SuppressWarnings("unused") | 127 @SuppressWarnings("unused") |
128 private void sendLog(PacketSet p) { | 128 private void sendLog(PacketSet p) { |
129 REPNode to; | 129 REPNode to; |
130 String s; | 130 String s; |
131 to = manager.editorList.editorByChannel(p.channel); | 131 to = manager.editorList.editorByChannel(p.channel.channel); |
132 if (to==null) | 132 if (to==null) |
133 s = p.channel.toString(); | 133 s = p.channel.toString(); |
134 else | 134 else |
135 s = to.toString(); | 135 s = to.toString(); |
136 logger.writeLog("writing: "+p.command+" to: " + s); | 136 logger.writeLog("writing: "+p.command+" to: " + s); |