[APM] Reduce log level to debug when no agent config is found (#93035)

This commit is contained in:
Tanish 2021-03-03 19:53:35 +05:30 committed by GitHub
parent ab6a688505
commit 8c6caf841b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,8 +166,8 @@ export const agentConfigurationSearchRoute = createRoute({
});
if (!config) {
context.logger.info(
`Config was not found for ${service.name}/${service.environment}`
context.logger.debug(
`[Central configuration] Config was not found for ${service.name}/${service.environment}`
);
throw Boom.notFound();
}