0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-18968 enable WT verbose by default

This commit is contained in:
David Hows 2015-07-06 16:15:34 +10:00
parent 104ec4c947
commit 190fa3eaaf

View File

@ -12,13 +12,15 @@ env.Append(CPPPATH=[
"src/include",
])
# Enable asserts, and optional rich logging in debug builds
# Enable asserts in debug builds
if debugBuild:
env.Append(CPPDEFINES=[
"HAVE_DIAGNOSTIC",
"HAVE_VERBOSE",
])
# Enable optional rich logging
env.Append(CPPDEFINES=["HAVE_VERBOSE"])
conf = Configure(env)
if conf.CheckFunc("fallocate"):
env.Append(CPPDEFINES=[