Fix the Sentry/logging bootstrap ordering so initSentry()'s first getSentryScope() call
can't fire a log write before determine() resolves. Do this through moving the initSentry() call in extension.ts to after await WriteableTmpDir.getInstance().determine() and place a comment as to why ("// Logging calls within initSentry() depend on first knowing a writeable tmp dir").
Fix the Sentry/logging bootstrap ordering so initSentry()'s first getSentryScope() call
can't fire a log write before determine() resolves. Do this through moving the initSentry() call in extension.ts to after
await WriteableTmpDir.getInstance().determine()and place a comment as to why ("// Logging calls within initSentry() depend on first knowing a writeable tmp dir").