Commit 82b5701b authored by unknown's avatar unknown

Add DBUG_PRINT to ndb_mgm_call when we encounter arguments (Properties) that...

Add DBUG_PRINT to ndb_mgm_call when we encounter arguments (Properties) that we are going to ignore (not send to mgmd).


ndb/src/mgmapi/mgmapi.cpp:
  Add DBUG_PRINT to ndb_mgm_call when we encounter arguments (Properties)
  that we are going to ignore.
  
  Useful in debugging additions to mgmapi.
parent dbb4671b
......@@ -287,8 +287,11 @@ ndb_mgm_call(NdbMgmHandle handle, const ParserRow<ParserDummy> *command_reply,
out.println("%s: %s", name, val_s.c_str());
break;
case PropertiesType_Properties:
DBUG_PRINT("info",("Ignoring PropertiesType_Properties."));
/* Ignore */
break;
default:
DBUG_PRINT("info",("Ignoring PropertiesType: %d.",t));
}
}
#ifdef MGMAPI_LOG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment