Rename uppercase 'LOGGER' static finals

Rename static final `LOGGER` members to use the lowercase form.
Although the loggers are static final, they are not constant values.
This commit is contained in:
Phillip Webb
2020-05-21 15:40:57 -07:00
committed by Mark Paluch
parent c9a5a19738
commit ea263b233b
14 changed files with 68 additions and 68 deletions

View File

@@ -130,7 +130,7 @@ class DefaultProjectionInformation implements ProjectionInformation {
*/
private static class PropertyDescriptorSource {
private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(PropertyDescriptorSource.class);
private static final Logger logger = org.slf4j.LoggerFactory.getLogger(PropertyDescriptorSource.class);
private final Class<?> type;
private final Optional<MethodsMetadata> metadata;
@@ -237,7 +237,7 @@ class DefaultProjectionInformation implements ProjectionInformation {
} catch (IOException e) {
LOG.info("Couldn't read class metadata for {}. Input property calculation might fail!", type);
logger.info("Couldn't read class metadata for {}. Input property calculation might fail!", type);
return Optional.empty();
}