remove some logging

This commit is contained in:
Eric House 2024-07-25 21:08:33 -07:00
parent ae03f4ed5b
commit b8e2877880
2 changed files with 2 additions and 4 deletions

View file

@ -916,7 +916,6 @@ static void
and_dutil_onMessageReceived( XW_DUtilCtxt* duc, XWEnv xwe, XP_U32 gameID,
const CommsAddrRec* from, const XP_U8* data, XP_U16 len )
{
LOG_FUNC();
DUTIL_CBK_HEADER( "onMessageReceived",
"(IL" PKG_PATH("jni/CommsAddrRec") ";[B)V" );
@ -929,7 +928,6 @@ and_dutil_onMessageReceived( XW_DUtilCtxt* duc, XWEnv xwe, XP_U32 gameID,
deleteLocalRefs( env, jmsg, jaddr, DELETE_NO_REF );
DUTIL_CBK_TAIL();
LOG_RETURN_VOID();
}
static void

View file

@ -559,7 +559,7 @@ void
dvc_parseMQTTPacket( XW_DUtilCtxt* dutil, XWEnv xwe, const XP_UCHAR* topic,
const XP_U8* buf, XP_U16 len )
{
XP_LOGFF( "(topic=%s, len=%d)", topic, len );
// XP_LOGFF( "(topic=%s, len=%d)", topic, len );
ASSERT_MAGIC();
MQTTDevID myID;
@ -627,7 +627,7 @@ dvc_parseMQTTPacket( XW_DUtilCtxt* dutil, XWEnv xwe, const XP_UCHAR* topic,
} else if ( isCtrlMsg( &myID, topic ) ) {
dutil_onCtrlReceived( dutil, xwe, buf, len );
}
LOG_RETURN_VOID();
// LOG_RETURN_VOID();
} /* dvc_parseMQTTPacket */
typedef struct _GetByKeyData {