|
|
@@ -79,7 +79,7 @@ public class RabbitListeners {
|
|
|
)
|
|
|
public void accessLogConsumer(@Payload String msg) {
|
|
|
AccessLog accessLog = JsonConverter.jsonToObject(msg, AccessLog.class);
|
|
|
- log.info("{} -> {}", accessLog.getRequestId(), accessLog.getRequestUrl());
|
|
|
+ //log.info("{} -> {}", accessLog.getRequestId(), accessLog.getRequestUrl());
|
|
|
}
|
|
|
|
|
|
@RabbitListener(bindings =@QueueBinding(
|
|
|
@@ -89,6 +89,6 @@ public class RabbitListeners {
|
|
|
)
|
|
|
public void runtimeLogConsumer(@Payload String msg) {
|
|
|
RuntimeLog runtimeLog = JsonConverter.jsonToObject(msg, RuntimeLog.class);
|
|
|
- log.info("{} -> {}:{}", runtimeLog.getApp(), runtimeLog.getApp(), runtimeLog.getHost());
|
|
|
+ //log.info("{} -> {}:{}", runtimeLog.getApp(), runtimeLog.getApp(), runtimeLog.getHost());
|
|
|
}
|
|
|
}
|