summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorjoreland@mysql.com <>2004-08-20 21:07:08 +0200
committerjoreland@mysql.com <>2004-08-20 21:07:08 +0200
commit3145031ae1f007cca34b7f9cc2993a14c6d81299 (patch)
treebdfa573b77199d2388b8d77ff2198833b79352ef /ndb
parentc7f311c450332ab9b586602d274dd82183a02381 (diff)
downloadmariadb-git-3145031ae1f007cca34b7f9cc2993a14c6d81299.tar.gz
removed debug printout
Diffstat (limited to 'ndb')
-rw-r--r--ndb/src/common/mgmcommon/ConfigInfo.cpp3
1 files changed, 0 insertions, 3 deletions
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: