Changeset 3422


Ignore:
Timestamp:
Feb 28, 2011 7:18:33 AM (13 years ago)
Author:
bennylp
Message:

Re #1174 (coreaudio_dev work): minor changes to replace "Error" message with "Warning" for non-fatal errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-audiodev/coreaudio_dev.c

    r3413 r3422  
    292292    if (ostatus != kAudioSessionNoError) { 
    293293        PJ_LOG(4, (THIS_FILE, 
    294                    "Error: cannot initialize audio session services (%i)", 
     294                   "Warning: cannot initialize audio session services (%i)", 
    295295                   ostatus)); 
    296296    } 
     
    303303    if (ostatus != kAudioSessionNoError) { 
    304304        PJ_LOG(4, (THIS_FILE, 
    305                    "Error: cannot set the audio session category (%i)", 
     305                   "Warning: cannot set the audio session category (%i)", 
    306306                   ostatus)); 
    307307    } 
     
    313313    if (ostatus != kAudioSessionNoError) { 
    314314        PJ_LOG(4, (THIS_FILE, 
    315                    "Error: cannot listen for audio route change " 
     315                   "Warning: cannot listen for audio route change " 
    316316                   "notifications (%i)", ostatus)); 
    317317    } 
Note: See TracChangeset for help on using the changeset viewer.