Skip to content
Snippets Groups Projects
Commit 8274c0e3 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-5681 fix logs

parent 320847cc
No related branches found
No related tags found
No related merge requests found
......@@ -40,8 +40,8 @@ class BescheidService {
@PostConstruct
void logStatus() {
remoteService.ifPresentOrElse(
service -> LOG.info("No BescheidRemoteService configured - Bescheid creation is not possible."),
() -> LOG.info("Bescheid-Manager is configured."));
service -> LOG.info("Bescheid-Manager is configured."),
() -> LOG.info("No BescheidRemoteService configured - Bescheid creation is not possible."));
}
public Bescheid createBescheid(BescheidRequest request) {
......
......@@ -103,7 +103,7 @@ public class OperatorBuilder {
try {
clazz = getFieldClass(clazz.getDeclaredField(fieldName));
} catch (NoSuchFieldException | ClassNotFoundException e) {
LOG.debug("Cannot find field {} from {}", fieldName, fieldPath, e);
LOG.trace("Cannot find field {} from {}", fieldName, fieldPath, e);
return null;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment