💡 adjust logging level

This commit is contained in:
Liang Ding 2014-11-21 15:23:28 +08:00
parent 091efbd23e
commit 9450d49e8c
1 changed files with 2 additions and 2 deletions

View File

@ -548,7 +548,7 @@ func removeFile(path string) bool {
return false
}
glog.Infof("Removed [%s]", path)
glog.V(5).Infof("Removed [%s]", path)
return true
}
@ -561,7 +561,7 @@ func renameFile(oldPath, newPath string) bool {
return false
}
glog.Infof("Renamed [%s] to [%s]", oldPath, newPath)
glog.V(5).Infof("Renamed [%s] to [%s]", oldPath, newPath)
return true
}