Updated log level to v2 for sysctlFSFileMax. (#2137)

This is very importatnt log for trouble-shooting, we should update
it to v2 by default.
This commit is contained in:
Guang Ya Liu 2018-02-24 00:11:54 +08:00 committed by Manuel Alejandro de Brito Fontes
parent 309a79483f
commit f26c881e3f
2 changed files with 2 additions and 2 deletions

View file

@ -61,6 +61,6 @@ func sysctlFSFileMax() int {
// returning 0 means don't render the value
return 0
}
glog.V(3).Infof("system fs.file-max=%v", fileMax)
glog.V(2).Infof("system fs.file-max=%v", fileMax)
return fileMax
}