chore: remove console.info and console.log debug statements from Metriki class

This commit is contained in:
retoor 2025-01-02 19:00:46 +00:00
parent 786e757458
commit 66671fe1b3

View File

@ -26,7 +26,6 @@ class Metriki {
}
}
emit(data){
console.info(data)
this.ws.send(JSON.stringify(data))
}
emitVisit(){
@ -81,7 +80,6 @@ class Metriki {
}else{
this.url += "/event"
}
console.log(this.url)
const me = this
this.ws = new WebSocket(this.url)
this.ws.onopen = () => {