remove console.logs

This commit is contained in:
Peter Maquiran
2022-06-29 15:51:28 +01:00
parent 2fad8c305a
commit 7fd256905d
22 changed files with 33 additions and 41 deletions
+3 -3
View File
@@ -88,7 +88,7 @@ export class ChatService {
}
getAllUsers() {
console.log(this.options)
// console.log(this.options)
return this.http.get(environment.apiChatUrl + 'users.list', this.options);
}
getAllConnectedUsers() {
@@ -375,8 +375,8 @@ export class ChatService {
SessionStore.user.ChatData = data
SessionStore.save()
this.setheader()
console.log(res)
console.log(SessionStore.user.ChatData)
// console.log(res)
// console.log(SessionStore.user.ChatData)
});
}
@@ -337,7 +337,7 @@ export class WsChatMethodsService {
this.dm[roomId] = room
this._dm.push(room)
console.log(this._dm)
// console.log(this._dm)
this.dmCount++
} else {
+1 -1
View File
@@ -10,7 +10,7 @@ self.addEventListener('activate', function(event) {
self.addEventListener('notificationclick', function(event) {
// Close the notification when it is clicked
event.notification.close();
console.log(event)
// console.log(event)
});