From f01cb4f89169011b71695e20ef39fc0623e9cb82 Mon Sep 17 00:00:00 2001 From: Niraj Tolia Date: Fri, 27 Oct 2023 23:06:30 -0700 Subject: [PATCH] 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_entry: No #### Type of change - [x] :bug: Bugfix - [x] :world_map: Documentation --- website/docs/support/bugs-and-features.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ```