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-02-25 00:33:19 +0000
commit1c31d7055ebb875775cd987c14cc82fb40a19b2e (patch)
treee492f4c06182e82a470753cf820aafdc3088cda2
parent28ff939623b778778102bf387f5d28bd068893a9 (diff)
downloadmongo-1c31d7055ebb875775cd987c14cc82fb40a19b2e.tar.gz
SERVER-63497 Fix icecream debugging
-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 4dadefe32ba..7689d681b1e 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
@@ -511,7 +511,7 @@ def generate(env):
env[command] = " ".join(["$( $ICERUN_GENERATOR $)", 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'