Hello all, I'm begginer on PJSIP and would like to know how to make it quiet, with no output at all. I have already tried this: /* Init pjsua */ { pjsua_config cfg; pjsua_logging_config log_cfg; pjsua_config_default(&cfg); cfg.cb.on_call_state = &on_call_state; pjsua_logging_config_default(&log_cfg); log_cfg.msg_logging = PJ_FALSE; log_cfg.level = 0; log_cfg.console_level = 0; status = pjsua_init(&cfg, &log_cfg, NULL); if (status != PJ_SUCCESS) error_exit("Error in pjsua_init()", status); } but it still gives me this messages: 14:30:46.639 os_core_unix.c pjlib 1.3 for POSIX initialized 14:30:46.640 sip_endpoint.c Creating endpoint instance... 14:30:46.640 pjlib select() I/O Queue created (0x85a3d98) 14:30:46.640 sip_endpoint.c Module "mod-msg-print" registered 14:30:46.640 sip_transport. Transport manager created. how can I supress them?? thanks already, Gabriel Ortiz -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/attachments/20090706/d4e2fa0a/attachment.html>