aboutsummaryrefslogtreecommitdiffstats
path: root/logger/glog
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-04 18:40:11 +0800
committerobscuren <geffobscura@gmail.com>2015-04-04 18:40:11 +0800
commita0e44e3281fcef0913b172ed4cdb5283a8d4a46b (patch)
treee10b9ce906119e3810a15df66f433da678a2764e /logger/glog
parent60e097a5f4c10e9e869bd2b4b2814b766b409e18 (diff)
downloaddexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar.gz
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar.bz2
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar.lz
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar.xz
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.tar.zst
dexon-a0e44e3281fcef0913b172ed4cdb5283a8d4a46b.zip
basic glog
Diffstat (limited to 'logger/glog')
-rw-r--r--logger/glog/glog.go1
1 files changed, 1 insertions, 0 deletions
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...)
}