tweak logging

This commit is contained in:
Eric House 2017-06-29 07:28:15 -07:00
parent d6bbccb773
commit b9d6b05d87
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ public class SMSReceiver extends BroadcastReceiver {
public void onReceive( Context context, Intent intent )
{
String action = intent.getAction();
// DbgUtils.logf( "SMSReceiver.onReceive: action=%s", action );
// Log.d( TAG, "onReceive(): action=%s", action );
if ( action.equals("android.intent.action.DATA_SMS_RECEIVED") ) {
Bundle bundle = intent.getExtras();
if ( null != bundle ) {

View file

@ -681,8 +681,8 @@ public class SMSService extends XWService {
for ( byte[] fragment : fragments ) {
mgr.sendDataMessage( phone, null, nbsPort, fragment, sent,
delivery );
Log.i( TAG, "sendBuffers(): sent %d byte fragment",
fragment.length );
Log.i( TAG, "sendBuffers(): sent %d byte fragment to %s",
fragment.length, phone );
}
success = true;
} catch ( IllegalArgumentException iae ) {