Minor improvements for EDQS

This commit is contained in:
ViacheslavKlimov 2025-04-11 16:56:00 +03:00
parent 122dea9feb
commit de855e5236
2 changed files with 2 additions and 3 deletions

View File

@ -36,7 +36,7 @@ public class VersionsStore {
isNew.set(true); isNew.set(true);
return version; return version;
} else { } else {
log.info("[{}] Version {} is outdated, the latest is {}", key, version, prevVersion); log.debug("[{}] Version {} is outdated, the latest is {}", key, version, prevVersion);
return prevVersion; return prevVersion;
} }
}); });

View File

@ -93,8 +93,7 @@ public class TbKafkaConsumerStatsService {
log.info("[{}] Topic partitions with lag: [{}].", groupId, builder.toString()); log.info("[{}] Topic partitions with lag: [{}].", groupId, builder.toString());
} }
} catch (Exception e) { } catch (Exception e) {
log.warn("[{}] Failed to get consumer group stats. Reason - {}.", groupId, e.getMessage()); log.warn("[{}] Failed to get consumer group stats", groupId, e);
log.trace("Detailed error: ", e);
} }
} }