Unverified Commit f22eea50 authored by Whyrusleeping's avatar Whyrusleeping Committed by GitHub

Merge pull request #30 from ipfs/feat/demote-warning

demote warning to debug log
parents ccbef01d 1a0d1fd7
......@@ -72,7 +72,7 @@ type blockService struct {
// NewBlockService creates a BlockService with given datastore instance.
func New(bs blockstore.Blockstore, rem exchange.Interface) BlockService {
if rem == nil {
log.Warning("blockservice running in local (offline) mode.")
log.Debug("blockservice running in local (offline) mode.")
}
return &blockService{
......@@ -86,7 +86,7 @@ func New(bs blockstore.Blockstore, rem exchange.Interface) BlockService {
// through to the blockstore and are not skipped by cache checks.
func NewWriteThrough(bs blockstore.Blockstore, rem exchange.Interface) BlockService {
if rem == nil {
log.Warning("blockservice running in local (offline) mode.")
log.Debug("blockservice running in local (offline) mode.")
}
return &blockService{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment