fix: log dynamic config reloads

This commit is contained in:
Peter Steinberger
2026-01-04 04:24:50 +00:00
parent 5673f4299a
commit fd91da2b7f
2 changed files with 5 additions and 0 deletions

View File

@@ -1727,6 +1727,10 @@ export async function startGatewayServer(
logReload.info(
`config hot reload applied (${plan.hotReasons.join(", ")})`,
);
} else if (plan.noopPaths.length > 0) {
logReload.info(
`config change applied (dynamic reads: ${plan.noopPaths.join(", ")})`,
);
}
};