1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Remove a stray Log() statement from Gittet

This commit is contained in:
Chris Cummer 2019-08-02 02:01:07 -07:00
parent 52023a4db0
commit a02e2a2247

View File

@ -35,7 +35,6 @@ func GetRoom(roomUri, apiToken string) (*Room, error) {
parseJson(&rooms, resp.Body) parseJson(&rooms, resp.Body)
for _, room := range rooms.Results { for _, room := range rooms.Results {
logger.Log(fmt.Sprintf("room: %s", room))
if room.URI == roomUri { if room.URI == roomUri {
return &room, nil return &room, nil
} }