remove logging

This commit is contained in:
Eric House 2016-12-19 22:21:51 -08:00
parent 994de23145
commit 68104bcf83
2 changed files with 1 additions and 3 deletions

View file

@ -1884,7 +1884,6 @@ Java_org_eehouse_android_xw4_jni_XwJNI_comms_1resendAll
( JNIEnv* env, jclass C, GamePtrType gamePtr, jboolean force, jobject jFilter,
jboolean thenAck )
{
LOG_FUNC();
jint result;
XWJNI_START();
CommsCtxt* comms = state->game.comms;
@ -1898,7 +1897,6 @@ Java_org_eehouse_android_xw4_jni_XwJNI_comms_1resendAll
#endif
}
XWJNI_END();
LOG_RETURNF( "%d", result );
return result;
}

View file

@ -1511,7 +1511,7 @@ comms_resendAll( CommsCtxt* comms, CommsConnType filter, XP_Bool force )
comms->nextResend = now + comms->resendBackoff;
}
}
XP_LOGF( TAGFMT() "=>%d", TAGPRMS, count );
XP_LOGF( TAGFMT() "=> %d", TAGPRMS, count );
return count;
} /* comms_resendAll */