2014-01-03 10:26:29 +04:00
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestStdStreamLog(t *testing.T) {
|
2014-04-06 18:09:23 +04:00
|
|
|
h, _ := NewStreamHandler(os.Stdout)
|
2014-01-03 10:26:29 +04:00
|
|
|
s := NewDefault(h)
|
|
|
|
s.Info("hello world")
|
|
|
|
|
|
|
|
s.Close()
|
|
|
|
|
|
|
|
Info("hello world")
|
|
|
|
}
|