Changeset 5361
- Timestamp:
- 03/12/08 10:13:12 (5 months ago)
- Files:
-
- wired/trunk/wired/commands.c (modified) (11 diffs)
- wired/trunk/wired/transfers.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wired/trunk/wired/commands.c
r5196 r5361 398 398 WI_ARRAY(arguments, 1)); 399 399 400 wi_log_ ll(WI_STR("%@ banned %@"),400 wi_log_info(WI_STR("%@ banned %@"), 401 401 wd_user_identifier(user), 402 402 wd_user_identifier(other_user)); … … 542 542 543 543 if(wd_accounts_create_group(account)) { 544 wi_log_ ll(WI_STR("%@ created the group \"%@\""),544 wi_log_info(WI_STR("%@ created the group \"%@\""), 545 545 wd_user_identifier(user), 546 546 account->name); … … 581 581 582 582 if(wd_accounts_create_user(account)) { 583 wi_log_ ll(WI_STR("%@ created the user \"%@\""),583 wi_log_info(WI_STR("%@ created the user \"%@\""), 584 584 wd_user_identifier(user), 585 585 account->name); … … 647 647 648 648 if(wd_files_delete_path(properpath)) { 649 wi_log_ ll(WI_STR("%@ deleted \"%@\""),649 wi_log_info(WI_STR("%@ deleted \"%@\""), 650 650 wd_user_identifier(user), 651 651 properpath); … … 674 674 wd_accounts_clear_group(name); 675 675 676 wi_log_ ll(WI_STR("%@ deleted the group \"%@\""),676 wi_log_info(WI_STR("%@ deleted the group \"%@\""), 677 677 wd_user_identifier(user), 678 678 name); … … 699 699 700 700 if(wd_accounts_delete_user(name)) { 701 wi_log_ ll(WI_STR("%@ deleted the user \"%@\""),701 wi_log_info(WI_STR("%@ deleted the user \"%@\""), 702 702 wd_user_identifier(user), 703 703 name); … … 730 730 731 731 if(wd_accounts_edit_group(account)) { 732 wi_log_ ll(WI_STR("%@ modified the group \"%@\""),732 wi_log_info(WI_STR("%@ modified the group \"%@\""), 733 733 wd_user_identifier(user), 734 734 account->name); … … 761 761 762 762 if(wd_accounts_edit_user(account)) { 763 wi_log_ ll(WI_STR("%@ modified the user \"%@\""),763 wi_log_info(WI_STR("%@ modified the user \"%@\""), 764 764 wd_user_identifier(user), 765 765 account->name); … … 821 821 822 822 if(wd_files_create_path(properpath, type)) { 823 wi_log_ ll(WI_STR("%@ created \"%@\""),823 wi_log_info(WI_STR("%@ created \"%@\""), 824 824 wd_user_identifier(user), 825 825 properpath); … … 1140 1140 WI_ARRAY(arguments, 1)); 1141 1141 1142 wi_log_ ll(WI_STR("%@ kicked %@"),1142 wi_log_info(WI_STR("%@ kicked %@"), 1143 1143 wd_user_identifier(user), 1144 1144 wd_user_identifier(other_user)); … … 1275 1275 1276 1276 if(wd_files_move_path(properfrompath, propertopath)) { 1277 wi_log_ ll(WI_STR("%@ moved \"%@\" to \"%@\""),1277 wi_log_info(WI_STR("%@ moved \"%@\" to \"%@\""), 1278 1278 wd_user_identifier(user), 1279 1279 properfrompath, propertopath); wired/trunk/wired/transfers.c
r5343 r5361 599 599 600 600 /* start download */ 601 wi_log_ l(WI_STR("Sending \"%@\" to %@"),601 wi_log_info(WI_STR("Sending \"%@\" to %@"), 602 602 transfer->path, 603 603 wd_user_identifier(transfer->user)); … … 722 722 } 723 723 724 wi_log_ l(WI_STR("Sent %llu/%llu bytes of \"%@\" to %@"),724 wi_log_info(WI_STR("Sent %llu/%llu bytes of \"%@\" to %@"), 725 725 transfer->transferred - transfer->offset, 726 726 transfer->size, … … 769 769 770 770 /* start upload */ 771 wi_log_ l(WI_STR("Receiving \"%@\" from %@"),771 wi_log_info(WI_STR("Receiving \"%@\" from %@"), 772 772 transfer->path, 773 773 wd_user_identifier(transfer->user)); … … 885 885 } 886 886 887 wi_log_ l(WI_STR("Received %llu/%llu bytes of \"%@\" from %@"),887 wi_log_info(WI_STR("Received %llu/%llu bytes of \"%@\" from %@"), 888 888 transfer->transferred - transfer->offset, 889 889 transfer->size,
