You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to replace in sphinx-tribes/db where we use fmt.Print{f,ln}
grep -nri "fmt\.Print" ./db
./db/alerts.go:39: fmt.Println("Ticket alerts: ENV information not found")
./db/alerts.go:53: fmt.Println("Ticket alerts: New ticket time not found")
./db/alerts.go:60: fmt.Println("Ticket alerts: No tickets found for person")
./db/alerts.go:79: fmt.Println("Ticket alerts: No ticket identified with the correct timestamp")
./db/alerts.go:84: fmt.Println("Ticket alerts: No languages found in ticket")
./db/alerts.go:91: fmt.Println("Ticket alerts: DB query to get interested people failed", err)
./db/alerts.go:101: fmt.Println("Ticket alerts: Unable to parse message into byte buffer", err)
./db/alerts.go:106: fmt.Println("Ticket alerts: Unable to create a request to send to relay", err)
./db/alerts.go:118: fmt.Println("Ticket alerts: Unable to communicate request to relay", err)
./db/config.go:43: fmt.Printf("db url : %v", dbURL)
./db/config.go:71: fmt.Println("db connected")
./db/config.go:475: fmt.Println("ticket from process", ticket)
./db/config_test.go:240: fmt.Println("tickets", tickets)
./db/metrics.go:27: fmt.Println("Error parsing date:", err)
./db/redis.go:33: fmt.Println("REDIS URL CONNECTION ERROR ===", err)
./db/redis.go:39: fmt.Println("Could Not Connect To Redis", err)
./db/redis.go:46: fmt.Println("REDIS SET ERROR :", err)
./db/redis.go:53: fmt.Println("REDIS GET ERROR :", err)
./db/redis.go:63: fmt.Println("REDIS SET MAP ERROR :", err)
./db/store.go:175: fmt.Println("challenge not found", err)
./db/store.go:185: fmt.Println(err)
./db/store.go:193: fmt.Println("payload unparseable", err)
./db/store.go:273: fmt.Println(err)
./db/store.go:280: fmt.Println("save payload unparseable", err)
./db/test_config.go:38: fmt.Println("DB CONNECTED")
./db/tickets.go:184: fmt.Println("data ===", data)
The text was updated successfully, but these errors were encountered:
Description
We want to replace in
sphinx-tribes/db
where we usefmt.Print{f,ln}
The text was updated successfully, but these errors were encountered: