diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-22 00:04:11 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-22 00:04:11 +0800 |
commit | 7f9c3354872e6fcc63c37abddb184e3e58790bc3 (patch) | |
tree | 98721ba3e202456503d9cffc7d0985c9ef35d215 /logger/logsystem.go | |
parent | 87f50659db7a4bf194769b05f541d2ccf02f4fc8 (diff) | |
download | go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar.gz go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar.bz2 go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar.lz go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar.xz go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.tar.zst go-tangerine-7f9c3354872e6fcc63c37abddb184e3e58790bc3.zip |
Split into multiple files
Diffstat (limited to 'logger/logsystem.go')
-rw-r--r-- | logger/logsystem.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/logger/logsystem.go b/logger/logsystem.go new file mode 100644 index 000000000..f154773ae --- /dev/null +++ b/logger/logsystem.go @@ -0,0 +1,31 @@ +package logger + +import ( + "io" + "log" + "sync/atomic" +) + +// NewStdLogSystem creates a LogSystem that prints to the given writer. +// The flag values are defined package log. +func NewStdLogSystem(writer io.Writer, flags int, level LogLevel) LogSystem { + logger := log.New(writer, "", flags) + return &stdLogSystem{logger, uint32(level)} +} + +type stdLogSystem struct { + logger *log.Logger + level uint32 +} + +func (t *stdLogSystem) LogPrint(level LogLevel, msg string) { + t.logger.Print(msg) +} + +func (t *stdLogSystem) SetLogLevel(i LogLevel) { + atomic.StoreUint32(&t.level, uint32(i)) +} + +func (t *stdLogSystem) GetLogLevel() LogLevel { + return LogLevel(atomic.LoadUint32(&t.level)) +} |