This commit is contained in:
davidnewhall2 2020-06-21 23:37:39 -07:00
parent f5b2023207
commit 90c35a3acc
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package unifi
import (
"encoding/json"
"fmt"
"log"
"time"
)
@ -90,6 +91,8 @@ func makeEventParams(timeRange ...time.Time) (string, error) {
params, err := json.Marshal(&rp)
log.Println(string(params))
return string(params), err
}