Remove relevant console log,

This commit is contained in:
Eudes Inácio
2022-04-28 09:32:27 +01:00
parent 3021e8b0e1
commit 2826cea9df
153 changed files with 1001 additions and 1132 deletions
@@ -148,7 +148,7 @@ export class PublicationsPage implements OnInit {
this.getFromDB()
this.publications.GetPublicationFolderList().subscribe(async res => {
console.log('accoes', res)
let publicationsEventFolderList = new Array();
let publicationsTravelFolderList = new Array();
@@ -170,7 +170,7 @@ export class PublicationsPage implements OnInit {
publicationsEventFolderList.push(folder);
}
else {
console.log('Viagem', folder)
publicationsTravelFolderList.push(folder);
}
@@ -194,7 +194,7 @@ export class PublicationsPage implements OnInit {
}
addActionToStorage(events, viagens) {
console.log('actionsWEBDB', events, viagens)
if (this.platform.is('desktop') || this.platform.is('mobileweb')) {
this.storage.set('actionsEvents', events);
this.storage.set('actionsViagens', viagens);
@@ -215,7 +215,7 @@ export class PublicationsPage implements OnInit {
this.publicationsEventFolderList = new Array();
this.publicationsTravelFolderList = new Array();
this.storage.get('actionsEvents').then((events) => {
console.log('actionsEvents', events)
events.forEach(data => {
let folder: PublicationFolder = {
ProcessId: data.ProcessId,
@@ -231,7 +231,7 @@ export class PublicationsPage implements OnInit {
});
});
this.storage.get('actionsViagens').then((viagens) => {
console.log('actionsViagens', viagens)
viagens.forEach(data => {
let folder: PublicationFolder = {
ProcessId: data.ProcessId,
@@ -249,7 +249,7 @@ export class PublicationsPage implements OnInit {
} else {
this.sqliteservice.getAllActions().then((actions: any[]) => {
console.log('offline publi', actions)
this.publicationsEventFolderList = new Array();
this.publicationsTravelFolderList = new Array();
@@ -516,7 +516,7 @@ export class PublicationsPage implements OnInit {
// this.crop.crop('path/to/image.jpg', {quality: 75})
// .then(
// newImage => console.log('new image path is: ' + newImage),
// newImage =>
// error => console.error('Error cropping image', error)
// );