Changeset 5542
- Timestamp:
- Jan 23, 2017 6:15:14 AM (8 years ago)
- Location:
- pjproject/trunk/pjsip-apps/src/pjsua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.m
r5166 r5542 40 40 static char **restartArgv; 41 41 static int restartArgc; 42 43 void displayLog(const char *msg, int len) 44 { 45 NSLog(@"%.*s", len, msg); 46 } 42 47 43 48 static void displayMsg(const char *msg) -
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_cli.c
r5535 r5542 152 152 static pj_cli_front_end *telnet_front_end = NULL; 153 153 154 #ifdef USE_GUI 155 void displayLog(const char *msg, int len); 156 #endif 157 154 158 /** Forward declaration **/ 155 159 pj_status_t cli_setup_command(pj_cli_t *cli); … … 171 175 if (cli) 172 176 pj_cli_write_log(cli, level, buffer, len); 177 #ifdef USE_GUI 178 displayLog(buffer, len); 179 #endif 173 180 } 174 181
Note: See TracChangeset
for help on using the changeset viewer.