Skip to content

Commit

Permalink
remove: 실수로 추가한 디버깅용 print 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
inferior3x committed Jan 4, 2025
1 parent 6c0e938 commit d615aa1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public DeviceEntity from(Device device) {
.mac(deviceInfo.getMac().toString())
.build())
.toList();
System.out.println("device.getMemberId().id() = " + device.getMemberId().id());
return new DeviceEntity(device.getId().id(), device.getMemberId().id(), device.getName(), deviceInfoEntities);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public final class MonitorLogParser {
public Set<String> parse(String log) {
String[] logParts = log.split("\t");
Set<String> macs = new HashSet<>();
System.out.println("'"+log+"' logParts.length = " + logParts.length);
if(logParts.length != 2) return macs; //정상적인 로그가 아닌경우
macs.add(logParts[0]); //출발지 맥
macs.add(logParts[1]); //도착지 맥
Expand Down

0 comments on commit d615aa1

Please sign in to comment.