Skip to content

Commit 5622c59

Browse files
committed
process config log
1 parent 6c369bd commit 5622c59

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ EmpowerPlant | Checkout
8585
![list of tools](./img/toolstore.png) | ![checkout cart](./img/cart.png)|
8686

8787
## Upgrade path
88-
1. npm install, then `pod update` if `pod install` is failing. The pod updating depends on node_modules/@sentry/react-native being set.
88+
1. npm install, then `cd ios && pod update` if `pod install` is failing. The pod updating depends on node_modules/@sentry/react-native being set.
8989
2. SDK Manager -> install 'emulator' or anything missing
9090
3. Review previous PR so you know what to expect
9191

ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ SPEC CHECKSUMS:
408408
BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872
409409
DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
410410
FBLazyVector: 49cbe4b43e445b06bf29199b6ad2057649e4c8f5
411-
FBReactNativeSpec: 324e70dddca47678fc467ab220389cd966de7954
411+
FBReactNativeSpec: f21132940a8f408886313ded89588b774fbec4b7
412412
glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
413413
RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
414414
RCTRequired: 2f8cb5b7533219bf4218a045f92768129cf7050a
@@ -444,4 +444,4 @@ SPEC CHECKSUMS:
444444

445445
PODFILE CHECKSUM: 79ce1c465caba661d8abf443587400c2a48c5974
446446

447-
COCOAPODS: 1.11.2
447+
COCOAPODS: 1.10.1

src/App.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ Sentry.init({
5757
// debug: true
5858
});
5959

60+
// See if anything different when this is in Saucelabs
61+
console.log("> PROCESS", process) // logs > PROCESS {"env": {"NODE_ENV": "development"}}
62+
Sentry.setContext("process", process);
63+
Sentry.captureMessage("message for context")
64+
6065
const Stack = createStackNavigator();
6166

6267
const App = () => {

src/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export const DSN =
2-
'https://[email protected]/5716557';
2+
// 'https://[email protected]/5716557';
3+
'https://[email protected]/6134889';
34

45
export const BACKEND_URL =
56
'https://application-monitoring-flask-dot-sales-engineering-sf.appspot.com'

0 commit comments

Comments
 (0)