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
+2 -2
View File
@@ -142,7 +142,7 @@ export class HomePage implements OnInit {
this.notificationsService.onReciveBackground();
window.addEventListener('online', () => {
console.log('Became online')
// console.log('Became online')
this.backgroundservice.online()
if (this.platform.is('desktop') || this.platform.is('mobileweb')) {
} else {
@@ -151,7 +151,7 @@ export class HomePage implements OnInit {
});
window.addEventListener('offline', () => {
console.log('Became offline')
// console.log('Became offline')
this.backgroundservice.offline()
});