Skip to content

Commit

Permalink
[AMSA-67] Added more try|catch constructions (#152)
Browse files Browse the repository at this point in the history
* [AMSA-67] Added more try|catch constructions

* [AMSA-67] Bump version and remove some catch
  • Loading branch information
maksimroi authored Oct 4, 2024
1 parent ef49a95 commit add99c6
Show file tree
Hide file tree
Showing 5 changed files with 384 additions and 259 deletions.
1 change: 0 additions & 1 deletion chrome-extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
},
"permissions": [
"tabs",
"cookies",
"notifications"
],
"host_permissions": [
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"repository": "https://github.com/appodeal/admob-sync-app",
"description": "Appodeal AdMob Sync application",
"private": true,
"version": "1.0.17",
"version": "1.0.18",
"scripts": {
"start": "npm run start:app",
"start:app": "node --max_old_space_size=4096 node_modules/.bin/webpack --watch --progress --config=webpack/development.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/core/admob-api/admob.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class AdmobApiService {
try {
return await r.json();
} catch (e) {
this.logger.info(await r.text());
this.logger.error(await r.text());
throw e;
}
});
Expand Down Expand Up @@ -105,6 +105,7 @@ export class AdmobApiService {
} catch (e) {
console.log('camClientInfo', json, body);
console.error(e);
this.logger.error('Failed to ejectCamApiXsrfToken', e);
throw e;
}
}
Expand Down
Loading

0 comments on commit add99c6

Please sign in to comment.