Mercurial > hg > RemoteEditor > REPSessionManager
comparison rep/SessionList.java @ 337:5ba5b7a9761b
use REPLogger
author | kono |
---|---|
date | Sun, 12 Oct 2008 18:42:18 +0900 |
parents | 83790b8b8174 |
children | 6ae9dcb30a12 |
comparison
equal
deleted
inserted
replaced
336:d00cb51ba652 | 337:5ba5b7a9761b |
---|---|
25 return editorCount; | 25 return editorCount; |
26 } | 26 } |
27 | 27 |
28 public String getSessionList() { | 28 public String getSessionList() { |
29 if (sessionLinkedList != null) { | 29 if (sessionLinkedList != null) { |
30 System.out.println(sessionLinkedList.toString()); | 30 SessionManager.logger.writeLog( |
31 sessionLinkedList.toString()); | |
31 return sessionLinkedList.toString(); | 32 return sessionLinkedList.toString(); |
32 } | 33 } |
33 return "{}"; | 34 return "{}"; |
34 } | 35 } |
35 | 36 |