1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-15 21:40:38 +02:00

adding instructions on how to use logging

This commit is contained in:
Chris Lu 2014-04-13 10:18:10 -07:00
parent 931bf2a50a
commit 963023898e
2 changed files with 5 additions and 3 deletions

View file

@ -389,7 +389,7 @@ type flushSyncWriter interface {
func init() {
flag.BoolVar(&logging.toStderr, "logtostderr", false, "log to standard error instead of files")
flag.BoolVar(&logging.alsoToStderr, "alsologtostderr", false, "log to standard error as well as files")
flag.BoolVar(&logging.alsoToStderr, "alsologtostderr", true, "log to standard error as well as files")
flag.Var(&logging.verbosity, "v", "log level for V logs")
flag.Var(&logging.stderrThreshold, "stderrthreshold", "logs at or above this threshold go to stderr")
flag.Var(&logging.vmodule, "vmodule", "comma-separated list of pattern=N settings for file-filtered logging")

View file

@ -45,7 +45,6 @@ func setExitStatus(n int) {
}
func main() {
glog.ToStderrAndLog()
glog.MaxSize = 1024 * 1024 * 32
rand.Seed(time.Now().UnixNano())
flag.Usage = usage
@ -89,7 +88,8 @@ func main() {
exit()
}
var usageTemplate = `WeedFS is a software to store billions of files and serve them fast!
var usageTemplate = `
Weed File System : store billions of files and serve them fast!
Usage:
@ -132,6 +132,8 @@ func printUsage(w io.Writer) {
func usage() {
printUsage(os.Stderr)
fmt.Fprintf(os.Stderr, "For Logging, use \"weed [logging_options] [command]\". The logging options are:\n")
flag.PrintDefaults()
os.Exit(2)
}