Skip to content

Commit

Permalink
Merge pull request dragonflyoss#774 from yeya24/change-log-level
Browse files Browse the repository at this point in the history
move some log level to debug
  • Loading branch information
starnop committed Aug 2, 2019
2 parents 5fc9635 + 144060c commit 0a64c59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/dfdaemon/app/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func cleanLocalRepo(dfpath string) {
return nil
}
if !info.Mode().IsRegular() {
logrus.Infof("ignore %s: not a regular file", path)
logrus.Debugf("ignore %s: not a regular file", path)
return nil
}
// get the last access time
Expand Down
2 changes: 1 addition & 1 deletion supernode/server/0.3_bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (s *Server) registry(ctx context.Context, rw http.ResponseWriter, req *http
logrus.Errorf("failed to register task %+v: %v", taskCreateRequest, err)
return err
}
logrus.Infof("success to register task %+v", taskCreateRequest)
logrus.Debugf("success to register task %+v", taskCreateRequest)
return EncodeResponse(rw, http.StatusOK, &types.ResultInfo{
Code: constants.Success,
Msg: constants.GetMsgByCode(constants.Success),
Expand Down

0 comments on commit 0a64c59

Please sign in to comment.