fehlerbehebung

This commit is contained in:
xoy 2023-01-28 22:15:12 +01:00
parent e5ac1317e2
commit 6bef9dbd07
2 changed files with 6 additions and 6 deletions

View File

@ -9,8 +9,8 @@ import (
)
func logger(input string) {
println("[" + time.Now().Format("15:04:05 UTC+1") + "] " + input)
fileAddLine("["+time.Now().Format("15:04:05 UTC+1")+"] "+input, "./log/"+time.Now().Format("2006-02-01")+".log")
println("[" + time.Now().Format("15:04:05 CET") + "] " + input)
fileAddLine("["+time.Now().Format("15:04:05 CET")+"] "+input, "./log/"+time.Now().Format("2006-02-01 CET")+".log")
}
func handler() {
@ -212,7 +212,7 @@ func getNextTopic() topic {
var output topic
for i := 0; i < 31; i++ {
newDate := stringSplit(date.AddDate(0, 0, 1*i).Format(time.UnixDate), " ")
newDate := stringSplit(date.AddDate(0, 0, 1*i).Format("Mon Jan _2 15:04:05 CET 2006"), " ")
if newDate[0] == "Thu" || newDate[0] == "Tue" {
dayA, errA := strconv.Atoi(newDate[2])
@ -222,7 +222,7 @@ func getNextTopic() topic {
errorPanic(errB)
if ifFloatRange(float64(dayA)/7, 0, 1, false, true) || (ifFloatRange(float64(dayB)/7, 2, 3, false, true) && newDate[0] == "Tue") {
output.date = date.AddDate(0, 0, 1*i).Format("02.01.2006")
output.date = date.AddDate(0, 0, 1*i).Format("02.01.2006 CET")
output.days = i
break
}

View File

@ -6,7 +6,7 @@ import (
)
func httpHandleFunc(urlPath string, filepath string, contentType string) {
logger("--> " + readHttpYML() + "/" + urlPath + " " + filepath + " " + contentType)
logger(readHttpYML() + "/" + urlPath + " - " + filepath + " " + contentType)
http.HandleFunc("/"+urlPath, func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("Content-Type", contentType)
@ -15,7 +15,7 @@ func httpHandleFunc(urlPath string, filepath string, contentType string) {
}
func httpHandleFuncWithPOST(urlPath string, filepath string, contentType string) {
logger("--> " + readHttpYML() + "/" + urlPath + " " + filepath + " " + contentType)
logger(readHttpYML() + "/" + urlPath + " - " + filepath + " " + contentType)
s := new(submit)
s.data = "null"
http.HandleFunc("/"+urlPath, func(w http.ResponseWriter, r *http.Request) {