From 3145031ae1f007cca34b7f9cc2993a14c6d81299 Mon Sep 17 00:00:00 2001 From: "joreland@mysql.com" <> Date: Fri, 20 Aug 2004 21:07:08 +0200 Subject: removed debug printout --- ndb/src/common/mgmcommon/ConfigInfo.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'ndb') diff --git a/ndb/src/common/mgmcommon/ConfigInfo.cpp b/ndb/src/common/mgmcommon/ConfigInfo.cpp index 30a709abe14..997c26a95d6 100644 --- a/ndb/src/common/mgmcommon/ConfigInfo.cpp +++ b/ndb/src/common/mgmcommon/ConfigInfo.cpp @@ -2920,21 +2920,18 @@ saveInConfigValues(InitConfigFileParser::Context & ctx, const char * data){ Uint32 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); - ndbout_c("put %s %d %d", n, id, val); break; } case PropertiesType_Uint64:{ Uint64 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put64(id, val); - ndbout_c("put64 %s %d %lld", n, id, val); break; } case PropertiesType_char:{ const char * val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); - ndbout_c("put %s %d %s", n, id, val); break; } default: -- cgit v1.2.1