mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #17331 from coolljt0725/fix_redundat_log
Better daemon log on docker load
This commit is contained in:
commit
0d963de867
1 changed files with 3 additions and 1 deletions
|
@ -125,8 +125,10 @@ func (s *TagStore) recursiveLoad(address, tmpImageDir string) error {
|
|||
if err := s.graph.Register(v1Descriptor{img}, layer); err != nil {
|
||||
return err
|
||||
}
|
||||
logrus.Debugf("Completed processing %s", address)
|
||||
return nil
|
||||
}
|
||||
logrus.Debugf("Completed processing %s", address)
|
||||
logrus.Debugf("already loaded %s", address)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue