Skip to content

Commit c772480

Browse files
committed
Removed bytes array logging as it is very memory heavy
1 parent 8adbb6a commit c772480

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

receive-messages.go

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"os"
66
"encoding/json"
77
"fmt"
8-
"log"
98
)
109

1110
type Config struct {
@@ -124,7 +123,6 @@ func connection_handler(url string, osu_urls []string, credentials []byte) (erro
124123
}
125124

126125
if response != nil {
127-
log.Print("writing", response, "to server")
128126
err = conn.WriteMessage(websocket.TextMessage, response)
129127
if err != nil {
130128
return err

update.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/skratchdot/open-golang/open"
1212
)
1313

14-
const version = "0.0.2"
14+
const version = "0.0.3"
1515

1616
// SelfUpdate updates the application (thx blackshark for this function <3)
1717
func SelfUpdate() {

0 commit comments

Comments
 (0)