-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
43 lines (35 loc) · 908 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
39
40
41
42
43
package main
import (
"os"
"runtime/debug"
cmd "github.com/Elfshot/go-xdcc/cmd"
log "github.com/sirupsen/logrus"
)
func initLog() {
logLevel := os.Getenv("LOG_LEVEL")
switch logLevel {
case "DEBUG":
log.SetLevel(log.DebugLevel)
case "ERROR":
log.SetLevel(log.ErrorLevel)
default:
log.SetLevel(log.InfoLevel)
}
}
func setRtOps() {
debug.SetGCPercent(20)
}
func main() {
setRtOps()
initLog()
cmd.Execute()
}
// TODO List
/*
sometimes downloads stall. auto restart them
"Auto-ignore activated for USERNAME (USERNAME!~IP thing) lasting 1m50s. Further messages will increase duration."
"You already requested that pack"
Apply config defaults
force http to use specified laddr too -> https://stackoverflow.com/questions/50870994/use-dial-in-golang-with-specific-local-address
replace the sketchky progress checker with one that watches the progress package's progress in a goroutine
*/