summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2022-02-24 23:30:24 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-07 19:49:26 +0000
commit6d6d72a987d0e1e673f261224eb4a81e636644f6 (patch)
tree87cc21ddd634ea9b2718b8331a476f7e9115ad8b
parent92e1ac24d775713d07487574ff34039c89171a2c (diff)
downloadmongo-6d6d72a987d0e1e673f261224eb4a81e636644f6.tar.gz
SERVER-63497 Fix icecream debugging
(cherry picked from commit 1c31d7055ebb875775cd987c14cc82fb40a19b2e) (cherry picked from commit 91c01f506c0de7f683c632e418bf075435b93a63)
-rw-r--r--site_scons/site_tools/icecream.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/site_scons/site_tools/icecream.py b/site_scons/site_tools/icecream.py
index 7456ed0cc8f..e1a6b6c89fd 100644
--- a/site_scons/site_tools/icecream.py
+++ b/site_scons/site_tools/icecream.py
@@ -135,7 +135,7 @@ def generate(env):
env.get('ICECREAM_TARGET_DIR', '#./.icecream')
)
verbose = env.get('ICECREAM_VERBOSE', False)
- env['ICECREAM_DEBUG'] = env.get('ICECREAM_DEBUG', False)
+ env['ICECC_DEBUG'] = env.get('ICECC_DEBUG', False)
# We have a lot of things to build and run that the final user
# environment doesn't need to see or know about. Make a custom env
@@ -505,7 +505,7 @@ def generate(env):
env[command] = " ".join(["$( $ICERUN $)", env[command]])
# Uncomment these to debug your icecc integration
- if env['ICECREAM_DEBUG']:
+ if env['ICECC_DEBUG']:
env['ENV']['ICECC_DEBUG'] = 'debug'
env['ENV']['ICECC_LOGFILE'] = 'icecc.log'