Commit 9159563d authored by unknown's avatar unknown
Browse files

removed debug printout

parent 220be53e
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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: