Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Log 'No keys found' as INFO instead of ERROR (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloyan-raev authored Jan 19, 2018
1 parent 7402d16 commit 5ec8c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/goobox/sync/storj/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public void onError(String message) {
}
});
} catch (KeysNotFoundException e) {
logger.error("No keys found. Waiting for keys to be imported.");
logger.info("No keys found. Waiting for keys to be imported.");
latch.countDown();
}

Expand Down

0 comments on commit 5ec8c87

Please sign in to comment.