Add GODEBUG to memory debug commands (#4576)

Was missed in the last patch

---

#### Does this PR need a docs update or release note?

- [x]  No

#### Type of change

- [x] 🐛 Bugfix
- [x] 🗺️ Documentation
This commit is contained in:
Niraj Tolia 2023-10-27 23:06:30 -07:00 committed by GitHub
parent f61448d650
commit f01cb4f891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,8 @@ memory, please run Corso with the following options:
```powershell
# Connect to the Corso Repository
.\corso <command> -hide-progress --log-level debug --mask-sensitive-data <command-options> > corso-gc.log 2>&1
GODEBUG=gctrace=1 .\corso <command> -hide-progress --log-level debug --mask-sensitive-data `
<command-options> > corso-gc.log 2>&1
```
</TabItem>
@ -33,7 +34,8 @@ memory, please run Corso with the following options:
```bash
# Connect to the Corso Repository
./corso <command> -hide-progress --log-level debug --mask-sensitive-data <command-options> > corso-gc.log 2>&1
GODEBUG=gctrace=1 ./corso <command> -hide-progress --log-level debug --mask-sensitive-data \
<command-options> > corso-gc.log 2>&1
```
</TabItem>