From 7cc1f473b6b5c6952c9ac1c52660133c0c36f859 Mon Sep 17 00:00:00 2001
From: chrislusf <chris.lu@gmail.com>
Date: Wed, 15 Apr 2015 00:01:32 -0700
Subject: [PATCH] Adjust log message for glog.

---
 go/glog/glog.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)