removed debug messages
parent
d5a169bae3
commit
9c479f7baf
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue