fix: optimize log

pull/1671/head
shedfreewu 1 month ago
parent 691113c1b5
commit d489a73690

@ -118,7 +118,7 @@ public class MetadataContext extends com.tencent.polaris.metadata.core.manager.M
.getProperties("spring.application.name", null));
}
if (!StringUtils.hasText(serviceName)) {
LOG.error("service name should not be blank. please configure spring.cloud.polaris.service or "
LOG.warn("service name should not be blank. please configure spring.cloud.polaris.service or "
+ "spring.cloud.polaris.discovery.service or spring.application.name");
}
serviceName = DiscoveryUtil.rewriteServiceId(serviceName);

@ -77,7 +77,7 @@ public class ApplicationContextAwareUtils implements ApplicationContextAware {
if (applicationContext != null) {
return applicationContext.getEnvironment().getProperty(key, defaultValue);
}
LOGGER.warn("applicationContext is null, try to get property from System.getenv or System.getProperty");
LOGGER.warn("applicationContext is null, try to get property({}} from System.getenv or System.getProperty", key);
String property = System.getenv(key);
if (StringUtils.isBlank(property)) {
property = System.getProperty(key, defaultValue);

Loading…
Cancel
Save