aboutsummaryrefslogtreecommitdiff
path: root/go/glog/glog.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/glog/glog.go')
-rw-r--r--go/glog/glog.go2
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)