From a0e44e3281fcef0913b172ed4cdb5283a8d4a46b Mon Sep 17 00:00:00 2001 From: obscuren Date: Sat, 4 Apr 2015 12:40:11 +0200 Subject: basic glog --- logger/glog/glog.go | 1 + 1 file changed, 1 insertion(+) (limited to 'logger/glog') diff --git a/logger/glog/glog.go b/logger/glog/glog.go index a0c4727f8..7f8cedbf1 100644 --- a/logger/glog/glog.go +++ b/logger/glog/glog.go @@ -1055,6 +1055,7 @@ func (v Verbose) Infoln(args ...interface{}) { // Infof is equivalent to the global Infof function, guarded by the value of v. // See the documentation of V for usage. func (v Verbose) Infof(format string, args ...interface{}) { + fmt.Println(v) if v { logging.printf(infoLog, format, args...) } -- cgit