mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-04 18:09:54 +08:00
放开memory队列指标打印
This commit is contained in:
@@ -20,14 +20,12 @@ public final class DefaultInMemoryStorage implements InMemoryStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void printStats() {
|
public void printStats() {
|
||||||
if (log.isDebugEnabled()) {
|
|
||||||
storage.forEach((topic, queue) -> {
|
storage.forEach((topic, queue) -> {
|
||||||
if (!queue.isEmpty()) {
|
if (!queue.isEmpty()) {
|
||||||
log.debug("[{}] Queue Size [{}]", topic, queue.size());
|
log.info("[{}] Queue Size [{}]", topic, queue.size());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getLagTotal() {
|
public int getLagTotal() {
|
||||||
|
|||||||
Reference in New Issue
Block a user