removed debug messages

master
alex 2022-06-30 21:25:27 +02:00
parent d5a169bae3
commit 9c479f7baf
1 changed files with 0 additions and 6 deletions

View File

@ -45,8 +45,6 @@ func SendMessage(today string, nextDay string) {
var todayRepresentation []Representation
var nextDayRepresentation []Representation
log.Println(today)
if today != "-" {
representation, err := Base64DecodeAndUnmarshal(today)
@ -55,8 +53,6 @@ func SendMessage(today string, nextDay string) {
}
todayRepresentation = representation
log.Println(representation)
}
if nextDay != "-" {
@ -69,8 +65,6 @@ func SendMessage(today string, nextDay string) {
nextDayRepresentation = representation
}
log.Println(nextDayRepresentation, todayRepresentation)
if len(todayRepresentation) == 0 && len(nextDayRepresentation) == 0 {
return
}