diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-05 05:27:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-05 05:27:23 +0800 |
commit | ac473a8623c22ef9ffeaa9022e31cacf219f5110 (patch) | |
tree | 82ce7a36b1a176678d0e115943e3aaf60e81c665 | |
parent | 053d5552abdbc4cf41376149b141e24a01713e5a (diff) | |
download | dexon-ac473a8623c22ef9ffeaa9022e31cacf219f5110.tar.gz dexon-ac473a8623c22ef9ffeaa9022e31cacf219f5110.tar.zst dexon-ac473a8623c22ef9ffeaa9022e31cacf219f5110.zip |
Remove debug log
-rw-r--r-- | logger/glog/glog.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/logger/glog/glog.go b/logger/glog/glog.go index 7f8cedbf1..a0c4727f8 100644 --- a/logger/glog/glog.go +++ b/logger/glog/glog.go @@ -1055,7 +1055,6 @@ 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...) } |