System.out.print 주석처리 또는 디버그 로그로 변경

This commit is contained in:
daekuk
2025-12-08 11:18:00 +09:00
parent 512e83042d
commit c31123973d
6 changed files with 47 additions and 29 deletions
@@ -191,13 +191,13 @@ public class AdapterInfosManager {
public String toString() {
System.out.println("---------------- Display START -------------------");
// System.out.println("---------------- Display START -------------------");
Collection<AdapterInfosVO> coll = AdapterInfosManager.adaptersMap.values();
Iterator<AdapterInfosVO> iter = coll.iterator();
while (iter.hasNext()) {
AdapterInfosVO tempVO = iter.next();
System.out.println(tempVO.toString());
// System.out.println(tempVO.toString());
}
return new String("---------------- Display END -------------------" );
@@ -254,7 +254,7 @@ public class AdapterInfosManager {
+ "\n AND B.PRPTYGROUPNAME = TAB5.PRPTYGROUPNAME "
+ "\n ORDER BY 1, 3, 4 "
+ "\n WITH UR";
System.out.println(SqlString);
// System.out.println(SqlString);
return SqlString;
}