Switch all logging to logrus, lower session ID log level to debug

This commit is contained in:
2023-12-24 15:02:01 -06:00
parent 50272dddd8
commit 40330c37ce
3 changed files with 7 additions and 4 deletions
+2 -1
View File
@@ -3,12 +3,13 @@ package main
import (
"fmt"
"io"
"log"
"math/rand"
"net/http"
"strconv"
"strings"
"time"
log "github.com/sirupsen/logrus"
)
func BuildRequestWithBody(method string, path string, params map[string]string, body io.Reader) *http.Request {