Skip to content
Snippets Groups Projects
Commit 1b0c9623 authored by 천 진강's avatar 천 진강
Browse files

fix: 라우팅 작업 로그에 개행이 한 번 더 들어가던 문제 수정

parent 017ea5c5
Branches
No related tags found
2 merge requests!15Feat/certificate,!14Feat/main 자잘한 변경 사항들
...@@ -61,7 +61,7 @@ public class RoutingLogAspect { ...@@ -61,7 +61,7 @@ public class RoutingLogAspect {
+ "ip: " + routing.getInstanceIp() + "\n" + "ip: " + routing.getInstanceIp() + "\n"
+ "port: " + routing.getInstancePort() + "\n" + "port: " + routing.getInstancePort() + "\n"
+ (routing.getCertificate() != null ? ("certificateId: " + routing.getCertificate().getCertificateId() + "\n") : "") + (routing.getCertificate() != null ? ("certificateId: " + routing.getCertificate().getCertificateId() + "\n") : "")
+ "caching: " + routing.getCaching() + "\n"; + "caching: " + routing.getCaching();
/* 로그 엔티티 저장 */ /* 로그 엔티티 저장 */
logRepository.save(Log.builder() logRepository.save(Log.builder()
...@@ -97,7 +97,7 @@ public class RoutingLogAspect { ...@@ -97,7 +97,7 @@ public class RoutingLogAspect {
+ "ip: " + routing.getInstanceIp() + "\n" + "ip: " + routing.getInstanceIp() + "\n"
+ "port: " + routing.getInstancePort() + "\n" + "port: " + routing.getInstancePort() + "\n"
+ (routing.getCertificate() != null ? ("certificateId: " + routing.getCertificate().getCertificateId() + "\n") : "") + (routing.getCertificate() != null ? ("certificateId: " + routing.getCertificate().getCertificateId() + "\n") : "")
+ "caching: " + routing.getCaching() + "\n"; + "caching: " + routing.getCaching();
/* 로그 엔티티 저장 */ /* 로그 엔티티 저장 */
logRepository.save(Log.builder() logRepository.save(Log.builder()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment