*** empty log message ***

svn path=/trunk/boinc/; revision=1635
This commit is contained in:
Karl Chen 2003-07-02 02:05:44 +00:00
parent 7881eb5cbf
commit cd289e271b
2 changed files with 9 additions and 8 deletions

View File

@ -5180,6 +5180,7 @@ David July 1 2003
Karl 2003/07/01 Karl 2003/07/01
- redesigned logging facilities for both scheduler servers and client - redesigned logging facilities for both scheduler servers and client
It is now easy to see the flow of events from looking at client.out
client/ client/
Makefile.am Makefile.am

View File

@ -111,7 +111,7 @@ int PERS_FILE_XFER::start_xfer() {
msg_printf(fip->project, MSG_INFO, "Started %s of %s", msg_printf(fip->project, MSG_INFO, "Started %s of %s",
(is_upload ? "upload" : "download"), fip->name); (is_upload ? "upload" : "download"), fip->name);
} }
scope_messages.printf("PERS_FILE_XFER::start_xfer(): URL: %s",fip->get_url()); scope_messages.printf("PERS_FILE_XFER::start_xfer(): URL: %s\n",fip->get_url());
return 0; return 0;
} }