]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
remove_debug
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 30 Oct 2013 22:26:06 +0000 (17:26 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 30 Oct 2013 22:26:06 +0000 (17:26 -0500)
src/switch_channel.c

index 4e5121a034cc6aa46070b01be53b634ce2d68db3..aa73b4d2fc5c70643de0e782fa668e7321424889 100644 (file)
@@ -4920,7 +4920,6 @@ static void switch_channel_check_device_state(switch_channel_t *channel, switch_
                if (!drec->active_start) {
                        drec->active_start = switch_micro_time_now();
                        drec->active_stop = 0;
-                       switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_CRIT, "SET START start:%ld stop:%ld\n", drec->active_start, drec->active_stop);
                }
                break;
        case SDS_HELD:
@@ -4935,7 +4934,6 @@ static void switch_channel_check_device_state(switch_channel_t *channel, switch_
 
        if (drec->active_start && drec->state != SDS_ACTIVE && drec->state != SDS_ACTIVE_MULTI) {
                drec->active_stop = switch_micro_time_now();
-               switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_CRIT, "SET STOP start:%ld stop:%ld\n", drec->active_start, drec->active_stop);
        }
 
        if (drec->ring_start && !drec->ring_stop && drec->state != SDS_RINGING) {
@@ -4997,7 +4995,6 @@ static void switch_channel_check_device_state(switch_channel_t *channel, switch_
                if (drec->state == SDS_ACTIVE || drec->state == SDS_ACTIVE_MULTI) {
                        drec->active_start = switch_micro_time_now();
                }
-               switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_CRIT, "SET START start:%ld stop:%ld\n", drec->active_start, drec->active_stop);
        }
 
        if (drec->hold_stop) {