Skip to content

Commit c027e67

Browse files
committed
Change log level in HeartbeatService
1 parent a285bf8 commit c027e67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/service/hearbeat/HeartbeatService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public void heartbeatReceived(@Nonnull HeartbeatService.HeartbeatSource heartbea
118118
for (IHeartbeatProcessor heartbeatProcessor : heartbeatProcessors) {
119119
heartbeatProcessor.heartbeatReceived(heartbeatSource, proxyId, sessionId);
120120
}
121-
log.info(String.format("%s, %s, %s, %s", Thread.currentThread().getName(), proxyId, heartbeatSource, sessionId));
121+
if (log.isDebugEnabled()) log.debug(String.format("Heartbeat received [proxyId: %s] [source: %s]", proxyId, heartbeatSource));
122122
}
123123

124124
public long getHeartbeatRate() {

0 commit comments

Comments
 (0)