Skip to content

Commit

Permalink
Changing from Errorf to Debugf because it is actually a debug message…
Browse files Browse the repository at this point in the history
… and not an error message.
  • Loading branch information
adecaro committed Jul 14, 2016
1 parent b2689b9 commit 091c6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/crypto/node_ks.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func (ks *keyStore) createKeyStoreIfNotExists() error {
if !missing {
// Check keystore file
missing, err = utils.FileMissing(ks.node.conf.getKeyStorePath(), ks.node.conf.getKeyStoreFilename())
ks.node.Errorf("Keystore [%s] missing [%t]:[%s]", ks.node.conf.getKeyStoreFilePath(), missing, utils.ErrToString(err))
ks.node.Debugf("Keystore [%s] missing [%t]:[%s]", ks.node.conf.getKeyStoreFilePath(), missing, utils.ErrToString(err))
}

if missing {
Expand Down

0 comments on commit 091c6b3

Please sign in to comment.