Changeset 209


Ignore:
Timestamp:
Feb 21, 2006 11:42:54 PM (18 years ago)
Author:
bennylp
Message:

Decrease log level from 4 to 5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/pasound.c

    r173 r209  
    254254    } 
    255255 
    256     PJ_LOG(4,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, " 
     256    PJ_LOG(5,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, " 
    257257                         "%d bits per sample, %d samples per buffer", 
    258258                         (err==0 ? "Success" : "Error"), 
     
    333333    } 
    334334 
    335     PJ_LOG(4,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, " 
     335    PJ_LOG(5,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, " 
    336336                         "%d bits per sample, %d samples per buffer", 
    337337                         (err==0 ? "Success" : "Error"), 
     
    349349PJ_DEF(pj_status_t) pj_snd_stream_start(pj_snd_stream *stream) 
    350350{ 
    351     PJ_LOG(4,(THIS_FILE, "Starting stream..")); 
     351    PJ_LOG(5,(THIS_FILE, "Starting stream..")); 
    352352    return Pa_StartStream(stream->stream); 
    353353} 
     
    366366    pj_thread_sleep(1); 
    367367 
    368     PJ_LOG(4,(THIS_FILE, "Stopping stream..")); 
     368    PJ_LOG(5,(THIS_FILE, "Stopping stream..")); 
    369369 
    370370    err = Pa_StopStream(stream->stream); 
     
    388388    paDevInfo = Pa_GetDeviceInfo(stream->dev_index); 
    389389 
    390     PJ_LOG(4,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow", 
     390    PJ_LOG(5,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow", 
    391391                         paDevInfo->name, 
    392392                         stream->underflow, stream->overflow)); 
Note: See TracChangeset for help on using the changeset viewer.