better logging of outgoing sms -- which still doesn't work in emulator

after new tools released.
This commit is contained in:
eehouse 2010-03-25 04:52:58 +00:00
parent f430a84d75
commit f71430dc27

View file

@ -261,8 +261,8 @@ public class CommsTransport extends Thread implements TransportProcs {
nSent = buf.length; nSent = buf.length;
break; break;
case COMMS_CONN_SMS: case COMMS_CONN_SMS:
Utils.logf( "sending via sms to " + m_addr.sms_phone Utils.logf( "sending via sms to %s:%d", m_addr.sms_phone,
+ m_addr.sms_port ); m_addr.sms_port );
try { try {
Intent intent = new Intent( m_context, StatusReceiver.class); Intent intent = new Intent( m_context, StatusReceiver.class);