William Santoso

Results 9 comments of William Santoso

Hi @szokeasaurusrex, this is Xcode build logs : Build Log ``` Showing All Messages PhaseScriptExecution Upload\ Debug\ Symbols\ to\ Sentry /Users/williamsantoso/Library/Developer/Xcode/DerivedData/Test_sentry-fczcdguhuxnypkegkhelwyjsezrn/Build/Intermediates.noindex/Test\ sentry.build/Debug-iphonesimulator/Test\ sentry.build/Script-51305D745B5F471F9F04941B.sh (in target 'Test sentry' from project 'Test...

Hi @szokeasaurusrex, this is the build Run Script ``` sh # This script is responsable to upload debug symbols and source context for Sentry. if which sentry-cli >/dev/null; then export...

@szokeasaurusrex I have added `curl -sL https://sentry.io/get-cli/ | sh` in the build script ``` sh curl -sL https://sentry.io/get-cli/ | sh # This script is responsable to upload debug symbols and...

@szokeasaurusrex , I have added log level to debug in my script ``` bash if which sentry-cli >/dev/null; then export SENTRY_ORG=test-6aq export SENTRY_PROJECT=apple-ios export SENTRY_LOG_LEVEL=debug ERROR=$(sentry-cli debug-files upload --include-sources "$DWARF_DSYM_FOLDER_PATH"...

@szokeasaurusrex yes, that's the export of all message in my xcode build logs.

Hi @szokeasaurusrex, I have the logs because, I changed the script into ``` sh if which sentry-cli >/dev/null; then export SENTRY_ORG=test-6aq export SENTRY_PROJECT=apple-ios sentry-cli debug-files upload --include-sources "$DWARF_DSYM_FOLDER_PATH" --log-level=debug 2>&1...

@szokeasaurusrex Theses are the updated logs ``` INFO 2024-02-29 16:08:43.946604 +07:00 Loaded config from /Users/williamsantoso/Documents/Parkee/Project/Test sentry/.sentryclirc DEBUG 2024-02-29 16:08:43.946804 +07:00 sentry-cli version: 2.28.6, platform: "darwin", architecture: "arm64" INFO 2024-02-29 16:08:43.947413...

@szokeasaurusrex I had added the dSYMs path into input files but I still had the same logs

@szokeasaurusrex I have added hard coded path of `{$DWARF_DSYM_FOLDER_PATH}/` but still get the same result. This is my github repo for this project (https://github.com/williamsantoso93/Test-sentry).