laforge
/
openbts-osmo
Archived
1
0
Fork 0

Print USSDData pointer when printing TransactionEntry.

This commit is contained in:
Alexander Chemeris 2010-09-09 18:24:10 +04:00
parent a2298288fe
commit aeedcc50b6
1 changed files with 1 additions and 0 deletions

View File

@ -266,6 +266,7 @@ ostream& Control::operator<<(ostream& os, const TransactionEntry& entry)
if (entry.calling().digits()[0]) os << " from=" << entry.calling().digits();
os << " Q.931State=" << entry.Q931State();
os << " SIPState=" << entry.SIP().state();
os << " USSDData=" << entry.ussdData();
os << " (" << (entry.stateAge()+500)/1000 << " sec)";
if (entry.message()[0]) os << " message=\"" << entry.message() << "\"";
return os;