Changeset 5822
- Timestamp:
- Jul 15, 2018 2:29:50 PM (6 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r5755 r5822 196 196 197 197 198 PJ_LOG(3,(THIS_FILE, "Call %d is DISCONNECTED [reason=%d (% s)]",198 PJ_LOG(3,(THIS_FILE, "Call %d is DISCONNECTED [reason=%d (%.*s)]", 199 199 call_id, 200 200 call_info.last_status, 201 (int)call_info.last_status_text.slen, 201 202 call_info.last_status_text.ptr)); 202 203 … … 254 255 } 255 256 256 PJ_LOG(3,(THIS_FILE, "Call %d state changed to %s (%d %.*s)", 257 call_id, call_info.state_text.ptr, 258 code, (int)reason.slen, reason.ptr)); 257 PJ_LOG(3,(THIS_FILE, "Call %d state changed to %.*s (%d %.*s)", 258 call_id, (int)call_info.state_text.slen, 259 call_info.state_text.ptr, code, 260 (int)reason.slen, reason.ptr)); 259 261 } else { 260 PJ_LOG(3,(THIS_FILE, "Call %d state changed to % s",262 PJ_LOG(3,(THIS_FILE, "Call %d state changed to %.*s", 261 263 call_id, 264 (int)call_info.state_text.slen, 262 265 call_info.state_text.ptr)); 263 266 } … … 321 324 "Media count: %d audio & %d video\n" 322 325 "%s" 323 "From: % s\n"324 "To: % s\n"326 "From: %.*s\n" 327 "To: %.*s\n" 325 328 "Press %s to answer or %s to reject call", 326 329 acc_id, … … 328 331 call_info.rem_vid_cnt, 329 332 notif_st, 333 (int)call_info.remote_info.slen, 330 334 call_info.remote_info.ptr, 335 (int)call_info.local_info.slen, 331 336 call_info.local_info.ptr, 332 337 (app_config.use_cli?"ca a":"a"), -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_acc.c
r5820 r5822 3940 3940 PJ_LOG(3, (THIS_FILE, "call to %.*s: hangup " 3941 3941 "triggered by IP change", 3942 call_info.remote_info.slen,3942 (int)call_info.remote_info.slen, 3943 3943 call_info.remote_info.ptr)); 3944 3944
Note: See TracChangeset
for help on using the changeset viewer.