laforge
/
openbts-osmo
Archived
1
0
Fork 0

Log contents of a message instead of its memory addresss in SMS::parseTPDU().

This commit is contained in:
Alexander Chemeris 2010-11-05 21:41:59 +03:00 committed by Thomas Tsou
parent a55a85eeba
commit 7318cc60f9
1 changed files with 2 additions and 2 deletions

View File

@ -123,9 +123,9 @@ TLMessage *SMS::parseTPDU(const TLFrame& TPDU)
case TLMessage::SUBMIT: { case TLMessage::SUBMIT: {
TLSubmit *submit = new TLSubmit; TLSubmit *submit = new TLSubmit;
submit->parse(TPDU); submit->parse(TPDU);
LOG(INFO) << "SMS SMS-SUBMIT " << submit; LOG(INFO) << "SMS SMS-SUBMIT " << *submit;
return submit; return submit;
} }
default: default:
return NULL; return NULL;
} }