clean up debug prints

This commit is contained in:
naskya 2023-08-27 04:02:02 +00:00
parent 32fdddb20a
commit e9361a9907

View File

@ -59,7 +59,6 @@ export default class Connection {
accessToken: string,
prepareStream: string | undefined,
) {
console.log("constructor", prepareStream);
this.wsConnection = wsConnection;
this.subscriber = subscriber;
if (user) this.user = user;
@ -88,7 +87,6 @@ export default class Connection {
this.subscriber.on(`user:${this.user.id}`, this.onUserEvent);
}
console.log("prepare", prepareStream);
if (prepareStream) {
this.onWsConnectionMessage({
type: "utf8",
@ -185,8 +183,7 @@ export default class Connection {
const tl = await client.getHomeTimeline();
for (const t of tl.data) forSubscribe.push(t.id);
} catch (e: any) {
console.log(e);
console.error(e.response.data);
console.error(e);
}
} else if (simpleObj.stream === "public:local") {
this.currentSubscribe.push(["public:local"]);
@ -247,7 +244,6 @@ export default class Connection {
for (const obj of objs) {
const { type, body } = obj;
// console.log(type, body);
switch (type) {
case "readNotification":
this.onReadNotification(body);