Changeset 5361

Show
Ignore:
Timestamp:
03/12/08 10:13:12 (5 months ago)
Author:
morris
Message:

Do away with wi_log_l*

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wired/trunk/wired/commands.c

    r5196 r5361  
    398398                                 WI_ARRAY(arguments, 1)); 
    399399 
    400         wi_log_ll(WI_STR("%@ banned %@"), 
     400        wi_log_info(WI_STR("%@ banned %@"), 
    401401                wd_user_identifier(user), 
    402402                wd_user_identifier(other_user)); 
     
    542542         
    543543        if(wd_accounts_create_group(account)) { 
    544                 wi_log_ll(WI_STR("%@ created the group \"%@\""), 
     544                wi_log_info(WI_STR("%@ created the group \"%@\""), 
    545545                        wd_user_identifier(user), 
    546546                        account->name); 
     
    581581         
    582582        if(wd_accounts_create_user(account)) { 
    583                 wi_log_ll(WI_STR("%@ created the user \"%@\""), 
     583                wi_log_info(WI_STR("%@ created the user \"%@\""), 
    584584                        wd_user_identifier(user), 
    585585                        account->name); 
     
    647647         
    648648        if(wd_files_delete_path(properpath)) { 
    649                 wi_log_ll(WI_STR("%@ deleted \"%@\""), 
     649                wi_log_info(WI_STR("%@ deleted \"%@\""), 
    650650                        wd_user_identifier(user), 
    651651                        properpath); 
     
    674674                wd_accounts_clear_group(name); 
    675675 
    676                 wi_log_ll(WI_STR("%@ deleted the group \"%@\""), 
     676                wi_log_info(WI_STR("%@ deleted the group \"%@\""), 
    677677                        wd_user_identifier(user), 
    678678                        name); 
     
    699699 
    700700        if(wd_accounts_delete_user(name)) { 
    701                 wi_log_ll(WI_STR("%@ deleted the user \"%@\""), 
     701                wi_log_info(WI_STR("%@ deleted the user \"%@\""), 
    702702                        wd_user_identifier(user), 
    703703                        name); 
     
    730730         
    731731        if(wd_accounts_edit_group(account)) { 
    732                 wi_log_ll(WI_STR("%@ modified the group \"%@\""), 
     732                wi_log_info(WI_STR("%@ modified the group \"%@\""), 
    733733                        wd_user_identifier(user), 
    734734                        account->name); 
     
    761761         
    762762        if(wd_accounts_edit_user(account)) { 
    763                 wi_log_ll(WI_STR("%@ modified the user \"%@\""), 
     763                wi_log_info(WI_STR("%@ modified the user \"%@\""), 
    764764                        wd_user_identifier(user), 
    765765                        account->name); 
     
    821821 
    822822        if(wd_files_create_path(properpath, type)) { 
    823                 wi_log_ll(WI_STR("%@ created \"%@\""), 
     823                wi_log_info(WI_STR("%@ created \"%@\""), 
    824824                        wd_user_identifier(user), 
    825825                        properpath); 
     
    11401140                                 WI_ARRAY(arguments, 1)); 
    11411141 
    1142         wi_log_ll(WI_STR("%@ kicked %@"), 
     1142        wi_log_info(WI_STR("%@ kicked %@"), 
    11431143                wd_user_identifier(user), 
    11441144                wd_user_identifier(other_user)); 
     
    12751275 
    12761276        if(wd_files_move_path(properfrompath, propertopath)) { 
    1277                 wi_log_ll(WI_STR("%@ moved \"%@\" to \"%@\""), 
     1277                wi_log_info(WI_STR("%@ moved \"%@\" to \"%@\""), 
    12781278                        wd_user_identifier(user), 
    12791279                        properfrompath, propertopath); 
  • wired/trunk/wired/transfers.c

    r5343 r5361  
    599599         
    600600        /* start download */ 
    601         wi_log_l(WI_STR("Sending \"%@\" to %@"), 
     601        wi_log_info(WI_STR("Sending \"%@\" to %@"), 
    602602                transfer->path, 
    603603                wd_user_identifier(transfer->user)); 
     
    722722        } 
    723723 
    724         wi_log_l(WI_STR("Sent %llu/%llu bytes of \"%@\" to %@"), 
     724        wi_log_info(WI_STR("Sent %llu/%llu bytes of \"%@\" to %@"), 
    725725                transfer->transferred - transfer->offset, 
    726726                transfer->size, 
     
    769769 
    770770        /* start upload */ 
    771         wi_log_l(WI_STR("Receiving \"%@\" from %@"), 
     771        wi_log_info(WI_STR("Receiving \"%@\" from %@"), 
    772772                transfer->path, 
    773773                wd_user_identifier(transfer->user)); 
     
    885885        } 
    886886 
    887         wi_log_l(WI_STR("Received %llu/%llu bytes of \"%@\" from %@"), 
     887        wi_log_info(WI_STR("Received %llu/%llu bytes of \"%@\" from %@"), 
    888888                transfer->transferred - transfer->offset, 
    889889                transfer->size,