diff options
| author | chrislusf <chris.lu@gmail.com> | 2015-04-15 00:01:32 -0700 |
|---|---|---|
| committer | chrislusf <chris.lu@gmail.com> | 2015-04-15 00:01:32 -0700 |
| commit | 7cc1f473b6b5c6952c9ac1c52660133c0c36f859 (patch) | |
| tree | 5fd7683fcd28f79f6266f66208d8d1329f0d1ff8 /go/glog/glog.go | |
| parent | 49d639ecabe32e02e4fc41e27bb61005fd25931d (diff) | |
| download | seaweedfs-7cc1f473b6b5c6952c9ac1c52660133c0c36f859.tar.xz seaweedfs-7cc1f473b6b5c6952c9ac1c52660133c0c36f859.zip | |
Adjust log message for glog.
Diffstat (limited to 'go/glog/glog.go')
| -rw-r--r-- | go/glog/glog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/glog/glog.go b/go/glog/glog.go index 68cdaede0..f8a14650b 100644 --- a/go/glog/glog.go +++ b/go/glog/glog.go @@ -736,7 +736,7 @@ var logExitFunc func(error) // It flushes the logs and exits the program; there's no point in hanging around. // l.mu is held. func (l *loggingT) exit(err error) { - fmt.Fprintf(os.Stderr, "log: exiting because of error: %s\n", err) + fmt.Fprintf(os.Stderr, "glog: exiting because of error: %s\n", err) // If logExitFunc is set, we do that instead of exiting. if logExitFunc != nil { logExitFunc(err) |
