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