fix: downgrade telegram autoSelectFamily log to debug

This commit is contained in:
Peter Steinberger
2026-02-22 15:21:10 +01:00
parent f5ede0f2bd
commit 7d7297f57f

View File

@@ -21,7 +21,7 @@ function applyTelegramNetworkWorkarounds(network?: TelegramNetworkConfig): void
try {
net.setDefaultAutoSelectFamily(decision.value);
const label = decision.source ? ` (${decision.source})` : "";
log.info(`telegram: autoSelectFamily=${decision.value}${label}`);
log.debug(`telegram: autoSelectFamily=${decision.value}${label}`);
} catch {
// ignore if unsupported by the runtime
}