-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
main.go
38 lines (30 loc) · 865 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main
import (
"os"
"time"
"github.com/kataras/golog"
)
func main() {
f := newLogFile()
defer f.Close()
golog.AddOutput(f)
golog.Println("This is a raw message, no levels, no colors.")
golog.Info("This is an info message, without colors because one of the Outputs is not a terminal-based")
golog.Warn("This is a warning message")
golog.Error("This is an error message")
}
// get a filename based on the date, file logs works that way the most times
// but these are just a sugar.
func todayFilename() string {
today := time.Now().Format("Jan 02 2006")
return today + ".txt"
}
func newLogFile() *os.File {
filename := todayFilename()
// open an output file, this will append to the today's file if server restarted.
f, err := os.OpenFile(filename, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
panic(err)
}
return f
}