summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2004-08-20 21:07:08 +0200
committerunknown <joreland@mysql.com>2004-08-20 21:07:08 +0200
commit9159563d61435515e272d3333cf53f4b38b3b550 (patch)
treebdfa573b77199d2388b8d77ff2198833b79352ef /ndb
parent220be53e29c1e9f35ed433ddd759c74a9e3d9bf8 (diff)
downloadmariadb-git-9159563d61435515e272d3333cf53f4b38b3b550.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: