-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.go
61 lines (52 loc) · 1.23 KB
/
init.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package main
import (
"log"
"os"
)
func init() {
// show the logo, repo link, etc
setUpUsTheWiki()
// initialize the configuration
initConfigParams()
// set up logging if the config file params
// are set
confVars.mu.RLock()
filog := confVars.fileLogging
qlog := confVars.quietLogging
logfi := confVars.logFile
confVars.mu.RUnlock()
if filog && !qlog {
if llogfile, err := os.OpenFile(logfi, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0600); err == nil {
log.SetOutput(llogfile)
go func() {
<-closelog
log.Printf("Closing log file ...\n")
err := llogfile.Close()
if err != nil {
log.Printf("Couldn't close log file: %v\n", err.Error())
}
}()
} else {
log.Printf("Couldn't log to file: %v\n", err.Error())
}
}
// Tell TildeWiki to be quiet,
if qlog {
if llogfile, err := os.Open("/dev/null"); err == nil {
log.SetOutput(llogfile)
go func() {
// I don't know why I'm bothering to do this for /dev/null
// ...
// whatever
<-closelog
log.Printf("Closing log file ...\n")
err := llogfile.Close()
if err != nil {
log.Printf("Couldn't close log file: %v\n", err.Error())
}
}()
} else {
log.Printf("Couldn't quiet logging: %v\n", err.Error())
}
}
}