Changeset 1350:dc323172c46f in roaraudio


Ignore:
Timestamp:
03/23/09 18:23:26 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

done some WARN->DBG cleanup

Location:
libroar
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libroar/vio_dstr.c

    r1349 r1350  
    354354  memset(tmp, 0, sizeof(tmp)); 
    355355 
    356   ROAR_WARN("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s)", i, c->type & 0xFFFF, roar_vio_dstr_get_name(c->type)); 
     356  ROAR_DBG("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s)", i, c->type & 0xFFFF, roar_vio_dstr_get_name(c->type)); 
    357357  ROAR_WARN("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): c->def=%p, c->def->type=%i", i, c->type & 0xFFFF, 
    358358                   roar_vio_dstr_get_name(c->type), c->def, c->def == NULL ? -1 : c->def->type); 
     
    520520 
    521521  if ( next != NULL ) { 
    522    ROAR_WARN("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next->def=%p, next->def->type=%i", i, 
     522   ROAR_DBG("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next->def=%p, next->def->type=%i", i, 
    523523                    c->type & 0xFFFF, roar_vio_dstr_get_name(c->type), 
    524524                    next->def, next->def == NULL ? -1 : next->def->type); 
    525525   if ( next->def != NULL ) { 
    526     ROAR_WARN("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next->def->o_flags=%i", i, 
     526    ROAR_DBG("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next->def->o_flags=%i", i, 
    527527                     c->type & 0xFFFF, roar_vio_dstr_get_name(c->type), 
    528528                     next->def->o_flags); 
    529529   } 
    530530  } else { 
    531    ROAR_WARN("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next=NULL", i, 
     531   ROAR_DBG("roar_vio_dstr_set_defaults(*): i=%i, c->type=0x%.4x(%s): next=NULL", i, 
    532532                    c->type & 0xFFFF, roar_vio_dstr_get_name(c->type)); 
    533533  } 
     
    582582 
    583583 for (i = 0; (c = &chain[i])->type != ROAR_VIO_DSTR_OBJT_EOL; i++) { 
    584   ROAR_WARN("roar_vio_dstr_build_chain(*): i=%i, c->type=0x%.4x(%s): need_vio=%i", i, 
     584  ROAR_DBG("roar_vio_dstr_build_chain(*): i=%i, c->type=0x%.4x(%s): need_vio=%i", i, 
    585585                   c->type & 0xFFFF, roar_vio_dstr_get_name(c->type), c->need_vio); 
    586586 
     
    625625    case ROAR_VIO_DSTR_OBJT_HTTP10: 
    626626    case ROAR_VIO_DSTR_OBJT_HTTP11: 
    627       ROAR_WARN("roar_vio_dstr_build_chain(*): HTTP*"); 
    628627      if ( roar_vio_open_proto(tc, prev, c->dst, ROAR_VIO_PROTO_P_HTTP, i == 0 ? NULL : chain[i-1].def) == -1 ) { 
    629628       _ret(-1); 
     
    632631    case ROAR_VIO_DSTR_OBJT_GOPHER: 
    633632    case ROAR_VIO_DSTR_OBJT_GOPHER_PLUS: 
    634       ROAR_WARN("roar_vio_dstr_build_chain(*): GOPHER*"); 
    635633      if ( roar_vio_open_proto(tc, prev, c->dst, ROAR_VIO_PROTO_P_GOPHER, i == 0 ? NULL : chain[i-1].def) == -1 ) { 
    636634       _ret(-1); 
  • libroar/vio_socket.c

    r1349 r1350  
    200200 if ( hint == -1 && odef != NULL ) { // if we still don't know what this is we try 
    201201                                     // to use the parent objects request 
    202   ROAR_WARN("roar_vio_socket_init_dstr_def(*): hint=-1 && odef!=NULL"); 
     202  ROAR_DBG("roar_vio_socket_init_dstr_def(*): hint=-1 && odef!=NULL"); 
    203203  if ( odef->type == ROAR_VIO_DEF_TYPE_SOCKET ) { 
    204    ROAR_WARN("roar_vio_socket_init_dstr_def(*): hint=-1 && odef!=NULL, using hint from odef"); 
     204   ROAR_DBG("roar_vio_socket_init_dstr_def(*): hint=-1 && odef!=NULL, using hint from odef"); 
    205205   hint = odef->d.socket.domain; 
    206206  } 
Note: See TracChangeset for help on using the changeset viewer.