aboutsummaryrefslogtreecommitdiffstats
path: root/logger
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-07 20:57:04 +0800
committerobscuren <geffobscura@gmail.com>2015-04-07 20:57:04 +0800
commit688d118c7e0d439691e84fc6e068ab3e19da5185 (patch)
tree6891a60950e0c2956c9f2d4fed6fceb67430775c /logger
parent01b2c90179ff82e4610745aea0e3e3ca53756305 (diff)
downloaddexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar.gz
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar.bz2
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar.lz
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar.xz
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.tar.zst
dexon-688d118c7e0d439691e84fc6e068ab3e19da5185.zip
Updated logging
Diffstat (limited to 'logger')
-rw-r--r--logger/glog/glog.go4
-rw-r--r--logger/glog/glog_file.go4
2 files changed, 8 insertions, 0 deletions
diff --git a/logger/glog/glog.go b/logger/glog/glog.go
index a0c4727f8..008c0e036 100644
--- a/logger/glog/glog.go
+++ b/logger/glog/glog.go
@@ -128,6 +128,10 @@ func GetTraceLocation() *TraceLocation {
return &logging.traceLocation
}
+func GetVModule() *moduleSpec {
+ return &logging.vmodule
+}
+
// get returns the value of the severity.
func (s *severity) get() severity {
return severity(atomic.LoadInt32((*int32)(s)))
diff --git a/logger/glog/glog_file.go b/logger/glog/glog_file.go
index 847e9b07c..2fc96eb4e 100644
--- a/logger/glog/glog_file.go
+++ b/logger/glog/glog_file.go
@@ -40,6 +40,10 @@ var logDirs []string
//var logDir = flag.String("log_dir", "", "If non-empty, write log files in this directory")
var logDir *string = new(string)
+func SetLogDir(str string) {
+ *logDir = str
+}
+
func createLogDirs() {
if *logDir != "" {
logDirs = append(logDirs, *logDir)