diff --git a/website/docs/support/bugs-and-features.md b/website/docs/support/bugs-and-features.md index 3480f1c54..e0d1a2a84 100644 --- a/website/docs/support/bugs-and-features.md +++ b/website/docs/support/bugs-and-features.md @@ -25,7 +25,8 @@ memory, please run Corso with the following options: ```powershell # Connect to the Corso Repository - .\corso -hide-progress --log-level debug --mask-sensitive-data > corso-gc.log 2>&1 + GODEBUG=gctrace=1 .\corso -hide-progress --log-level debug --mask-sensitive-data ` + > corso-gc.log 2>&1 ``` @@ -33,7 +34,8 @@ memory, please run Corso with the following options: ```bash # Connect to the Corso Repository - ./corso -hide-progress --log-level debug --mask-sensitive-data > corso-gc.log 2>&1 + GODEBUG=gctrace=1 ./corso -hide-progress --log-level debug --mask-sensitive-data \ + > corso-gc.log 2>&1 ```