aboutsummaryrefslogtreecommitdiffstats
path: root/ethlog/example_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <obscuren@users.noreply.github.com>2014-10-17 23:24:44 +0800
committerJeffrey Wilcke <obscuren@users.noreply.github.com>2014-10-17 23:24:44 +0800
commitfc308b842eafe6f6703dd21a003a8abaf3538aa4 (patch)
tree6a318065065568d7f0bad6d3dcd3e8a7ed3136b9 /ethlog/example_test.go
parente183880d8b02d4a9713b903acb41dd4381957f81 (diff)
parent35f339e9423bb3f3b5130e954e4a03937971b0ac (diff)
downloadgo-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.gz
go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.zst
go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.zip
Merge pull request #59 from fjl/feature/raceless-ethlog
Improve package ethlog
Diffstat (limited to 'ethlog/example_test.go')
-rw-r--r--ethlog/example_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/ethlog/example_test.go b/ethlog/example_test.go
new file mode 100644
index 000000000..2532f36c1
--- /dev/null
+++ b/ethlog/example_test.go
@@ -0,0 +1,21 @@
+package ethlog
+
+import "os"
+
+func ExampleLogger() {
+ logger := NewLogger("TAG")
+ logger.Infoln("so awesome") // prints [TAG] so awesome
+ logger.Infof("this %q is raw", "coin") // prints [TAG] this "coin" is raw
+}
+
+func ExampleLogSystem() {
+ filename := "test.log"
+ file, _ := os.OpenFile(filename, os.O_RDWR|os.O_CREATE, os.ModePerm)
+ fileLog := NewStdLogSystem(file, 0, WarnLevel)
+ AddLogSystem(fileLog)
+
+ stdoutLog := NewStdLogSystem(os.Stdout, 0, WarnLevel)
+ AddLogSystem(stdoutLog)
+
+ NewLogger("TAG").Warnln("reactor meltdown") // writes to both logs
+}