From d5687d2e9cd083bed7c6ff04cdf165ade4e91c00 Mon Sep 17 00:00:00 2001 From: Nong Li Date: Mon, 17 Dec 2012 14:41:00 -0800 Subject: [PATCH] Changed debug/release to upper case. --- be/src/util/debug-util.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/util/debug-util.cc b/be/src/util/debug-util.cc index 6ca8f2dd6..e259f55ab 100644 --- a/be/src/util/debug-util.cc +++ b/be/src/util/debug-util.cc @@ -252,9 +252,9 @@ string GetBuildVersion() { stringstream ss; ss << Version::BUILD_VERSION #ifdef NDEBUG - << " release" + << " RELEASE" #else - << " debug" + << " DEBUG" #endif << " (build " << Version::BUILD_HASH << ")" << endl