summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/alecthomas/log4go/examples/ConsoleLogWriter_Manual.go
blob: 698dd332d82f38e3186f0a0134251e0e06a275e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"time"
)

import l4g "code.google.com/p/log4go"

func main() {
	log := l4g.NewLogger()
	defer log.Close()
	log.AddFilter("stdout", l4g.DEBUG, l4g.NewConsoleLogWriter())
	log.Info("The time is now: %s", time.Now().Format("15:04:05 MST 2006/01/02"))
}