You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
Go
16 lines
347 B
Go
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/jordanorelli/blammo"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
stdout := blammo.NewLineWriter(os.Stdout)
|
||
|
stderr := blammo.NewLineWriter(os.Stderr)
|
||
|
log := blammo.NewLog("kloam", blammo.DebugWriter(stdout), blammo.InfoWriter(stdout), blammo.ErrorWriter(stderr))
|
||
|
log.Info("this is some info")
|
||
|
log.Info("some more info here")
|
||
|
}
|