Skip to content

Commit

Permalink
Changed console log to console error
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushalrajbacancy committed Oct 23, 2023
1 parent 168a532 commit e215ec4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdk/data/data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ export class DataService extends Service {

return result ? result.items : [];
} catch (error) {
console.log(error);
console.error(error);
return [];
}
}
Expand Down Expand Up @@ -535,7 +535,7 @@ export class DataService extends Service {

return result ? result.tokens : [];
} catch (error) {
console.log(error);
console.error(error);
return [];
}
}
Expand Down Expand Up @@ -574,7 +574,7 @@ export class DataService extends Service {

return result ?? null;
} catch (error) {
console.log(error);
console.error(error);
return null;
}
}
Expand Down

0 comments on commit e215ec4

Please sign in to comment.