Skip to content

Commit f6fb4fc

Browse files
console.logs are removed, sentry-ui is updated
1 parent f74798d commit f6fb4fc

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puzzle-js/sentry",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "PuzzleJS Content Management System",
55
"author": "Mehmet Sefa Balik @mehmetsefabalik",
66
"license": "MIT",
@@ -25,7 +25,7 @@
2525
"@nestjs/platform-socket.io": "^6.9.0",
2626
"@nestjs/serve-static": "^1.0.1",
2727
"@nestjs/websockets": "^6.9.0",
28-
"@puzzle-js/sentry-ui": "0.0.5",
28+
"@puzzle-js/sentry-ui": "0.0.6",
2929
"@types/couchbase": "^2.4.1",
3030
"couchbase": "^2.6.9",
3131
"ottoman": "^1.0.6",

src/fragment/fragment.gateway.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ export class FragmentGateway implements OnGatewayInit, OnGatewayConnection, OnGa
4848
}
4949

5050
afterInit(server: Server) {
51-
console.log('fragment init');
51+
// console.log('fragment init');
5252
}
5353

5454
handleConnection(client: Socket, ...args: any[]) {
55-
console.log(`fragment connected ${client.id} ${args}`);
55+
// console.log(`fragment connected ${client.id} ${args}`);
5656
}
5757

5858
handleDisconnect(client: Socket) {
59-
console.log(`fragment disconnected ${client.id}`);
59+
// console.log(`fragment disconnected ${client.id}`);
6060
}
6161
}

src/gateway/gateway.gateway.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ export class GatewayGateway implements OnGatewayInit, OnGatewayConnection, OnGat
4848
}
4949

5050
afterInit(server: Server) {
51-
console.log('gateway init');
51+
// console.log('gateway init');
5252
}
5353

5454
handleConnection(client: Socket, ...args: any[]) {
55-
console.log(`gateway connected ${client.id} ${args}`);
55+
// console.log(`gateway connected ${client.id} ${args}`);
5656
}
5757

5858
handleDisconnect(client: Socket) {
59-
console.log(`gateway disconnected ${client.id}`);
59+
// console.log(`gateway disconnected ${client.id}`);
6060
}
6161
}

src/gateway/gateway.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ export class GatewayService {
4040
.from('gateway', 'getAll')
4141
.stale(ViewQuery.Update.BEFORE);
4242
this.couchbaseService.getBucket().query(query, (err, data) => {
43-
console.log("err", err);
44-
console.log("data", data)
4543
if (err) return reject(null);
4644
const gateways = data.map((g) => g.value);
4745
resolve(gateways);

src/page/page.gateway.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ export class PageGateway implements OnGatewayInit, OnGatewayConnection, OnGatewa
4848
}
4949

5050
afterInit(server: Server) {
51-
console.log('page init');
51+
// console.log('page init');
5252
}
5353

5454
handleConnection(client: Socket, ...args: any[]) {
55-
console.log(`page connected ${client.id} ${args}`);
55+
// console.log(`page connected ${client.id} ${args}`);
5656
}
5757

5858
handleDisconnect(client: Socket) {
59-
console.log(`page disconnected ${client.id}`);
59+
// console.log(`page disconnected ${client.id}`);
6060
}
6161
}

0 commit comments

Comments
 (0)