Changeset ed86165 for protocols/msn


Ignore:
Timestamp:
2010-10-02T04:22:57Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
04cd284
Parents:
52f5e90
Message:

Silence some debugging stuff that was still going to stdout.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    r52f5e90 red86165  
    634634                bd->flags |= MSN_BUDDY_PL;
    635635       
    636         printf( "%p %s %d\n", bu, handle, bd->flags );
     636        if( getenv( "BITLBEE_DEBUG" ) )
     637                printf( "%p %s %d\n", bu, handle, bd->flags );
    637638       
    638639        return XT_HANDLED;
     
    780781        }
    781782       
    782         printf( "%s %s\n", id, name );
     783        if( getenv( "BITLBEE_DEBUG" ) )
     784                printf( "%s %s\n", id, name );
    783785       
    784786        return XT_HANDLED;
     
    840842                imcb_add_buddy( ic, handle, group->name );
    841843       
    842         printf( "%s %s %s %s\n", id, type, handle, display_name );
     844        if( getenv( "BITLBEE_DEBUG" ) )
     845                printf( "%s %s %s %s\n", id, type, handle, display_name );
    843846       
    844847        return XT_HANDLED;
Note: See TracChangeset for help on using the changeset viewer.