1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 22:49:13 +08:00

misc: suppress logs to Debug (from Info)

This commit is contained in:
Brian Tiger Chow
2015-02-06 11:24:08 -07:00
parent a549cf57d6
commit 0db1a94862
4 changed files with 6 additions and 6 deletions

View File

@ -276,7 +276,7 @@ func callCommand(ctx context.Context, req cmds.Request, root *cmds.Command, cmd
return nil, err
}
log.Info("looking for running daemon...")
log.Debug("looking for running daemon...")
useDaemon, err := commandShouldRunOnDaemon(*details, req, root)
if err != nil {
return nil, err
@ -320,7 +320,7 @@ func callCommand(ctx context.Context, req cmds.Request, root *cmds.Command, cmd
}
} else {
log.Info("Executing command locally")
log.Debug("Executing command locally")
// Okay!!!!! NOW we can call the command.
res = root.Call(req)