diff rep/handler/Dispatcher.java @ 384:bcdf5476b8e4

restructured-version
author one@firefly.cr.ie.u-ryukyu.ac.jp
date Mon, 10 Nov 2008 22:16:37 +0900
parents 4b87f89b3afd
children 1fca50ce3508
line wrap: on
line diff
--- a/rep/handler/Dispatcher.java	Mon Nov 10 22:13:40 2008 +0900
+++ b/rep/handler/Dispatcher.java	Mon Nov 10 22:16:37 2008 +0900
@@ -3,6 +3,7 @@
 import java.io.IOException;
 
 import rep.REPCommand;
+import rep.ServerMainLoop;
 import rep.Session;
 import rep.SessionManager;
 import rep.channel.REPSelectionKey;
@@ -42,7 +43,7 @@
 		 */
 		REPSocketChannel<REPCommand> channel = key.channel1();
 		REPCommand command = channel.read();
-		SessionManager.logger.writeLog("REPHandlerImpl.handle() : command = " + command);
+		ServerMainLoop.logger.writeLog("REPHandlerImpl.handle() : command = " + command);
 		if (manager.sessionManage(this, command)) return;
 		
 		distpatchToEditor(channel, command);