remove console.log

This commit is contained in:
Peter Maquiran
2022-01-13 12:52:05 +01:00
parent ca2c5abe51
commit 0b1add3fb7
2 changed files with 10 additions and 5 deletions
@@ -35,9 +35,9 @@ export class WsChatMethodsService {
async getAllRooms () {
this.loadingWholeList = true
const rooms: any = await this.WsChatService.getRooms();
const rooms = await this.WsChatService.getRooms();
console.log("ROOMS" + JSON.stringify(rooms))
// console.log("ROOMS" + JSON.stringify(rooms))
rooms.result.update.forEach((roomData: room) => {
let room:RoomService;