MayamaTakeshi / sip-lab

A node module that helps to write SIP functional tests
3 stars 2 forks source link

Replace addon_log with PJ_PERROR #94

Open MayamaTakeshi opened 3 months ago

MayamaTakeshi commented 3 months ago

Sample:

        status = pj_timer_heap_create(g_app_pool, 128, &g_timer_heap);
        if (status != PJ_SUCCESS) {
            PJ_PERROR(1, (THIS_FILE, status, "create timer heap error"));
            goto on_error;
        }