Commit e7a36e3f authored by Stefan Eissing's avatar Stefan Eissing
Browse files

On the trunk:

mod_http2: removing debug logs leftover in previous commit

* modules/http2/h2_bucket_beam.c
  removed log warnings from debug session



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1775944 13f79535-47bb-0310-9956-ffa450edef68
parent 76f6d8fb
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -635,8 +635,6 @@ void h2_beam_abort(h2_bucket_beam *beam)
            r_purge_sent(beam);
            h2_blist_cleanup(&beam->send_list);
            report_consumption(beam, 0);
            ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool, 
                          "h2_beam(%d-%s): aborted", beam->id, beam->tag);
        }
        if (beam->m_cond) {
            apr_thread_cond_broadcast(beam->m_cond);
@@ -837,8 +835,6 @@ apr_status_t h2_beam_send(h2_bucket_beam *beam,

    /* Called from the red thread to add buckets to the beam */
    if (enter_yellow(beam, &bl) == APR_SUCCESS) {
        ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool, 
                      "h2_beam(%d-%s): send", beam->id, beam->tag);
        r_purge_sent(beam);
        if (red_brigade && !beam->send_pool) {
            beam_set_send_pool(beam, red_brigade->p);
@@ -880,8 +876,6 @@ apr_status_t h2_beam_receive(h2_bucket_beam *beam,
    /* Called from the green thread to take buckets from the beam */
    if (enter_yellow(beam, &bl) == APR_SUCCESS) {
transfer:
        ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool, 
                      "h2_beam(%d-%s): receive", beam->id, beam->tag);
        if (beam->aborted) {
            if (beam->recv_buffer && !APR_BRIGADE_EMPTY(beam->recv_buffer)) {
                apr_brigade_cleanup(beam->recv_buffer);