MXS-2020 Replace ss_debug with MXB_AT_DEBUG

This commit is contained in:
Johan Wikman
2018-08-22 09:41:27 +03:00
parent 84876b881b
commit b1e405442f
20 changed files with 38 additions and 39 deletions

View File

@ -386,7 +386,7 @@ void AvroConverter::column(int i)
void AvroConverter::set_active(int i)
{
ss_debug(int rc =)avro_value_get_by_name(&m_record, m_create->columns[i].name.c_str(),
MXB_AT_DEBUG(int rc =)avro_value_get_by_name(&m_record, m_create->columns[i].name.c_str(),
&m_field, NULL);
ss_dassert(rc == 0);
}

View File

@ -151,7 +151,7 @@ static int conv_state_handler(void* data, const char* section, const char* key,
if (strcmp(key, "gtid") == 0)
{
gtid_pos_t gtid;
ss_debug(bool rval = )gtid.parse(value);
MXB_AT_DEBUG(bool rval = )gtid.parse(value);
ss_dassert(rval);
router->handler.set_gtid(gtid);
}