Skip to content

Commit

Permalink
Remove diag logging on schema checking (MID-4807)
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 5, 2018
1 parent 2bf9db9 commit 9359a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -71,7 +71,7 @@ enum State {

@NotNull
SchemaAction determineSchemaAction(SchemaState schemaState) {
LOGGER.info("Determining action for state: {}", schemaState); // todo debug
LOGGER.debug("Determining action for state: {}", schemaState);
State state = determineState(schemaState);
switch (state) {
case COMPATIBLE:
Expand Down
Expand Up @@ -67,7 +67,7 @@ public void execute() {

SchemaState schemaState = new SchemaState(determineDataStructureCompliance(), determineDeclaredVersion());
SchemaAction action = actionComputer.determineSchemaAction(schemaState);
LOGGER.info("Determined schema action: " + action); // todo debug
LOGGER.debug("Determined schema action: {}", action);

if (action instanceof SchemaAction.None) {
// nothing to do
Expand Down

0 comments on commit 9359a7e

Please sign in to comment.