Index: openacs-4/packages/acs-tcl/tcl/apm-file-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/apm-file-procs.tcl,v diff -u -r1.35.8.12 -r1.35.8.13 --- openacs-4/packages/acs-tcl/tcl/apm-file-procs.tcl 1 Apr 2014 18:37:31 -0000 1.35.8.12 +++ openacs-4/packages/acs-tcl/tcl/apm-file-procs.tcl 6 Jul 2014 11:46:18 -0000 1.35.8.13 @@ -516,7 +516,7 @@ # # ... use xo::HttpRequest... # - #ns_log notice "Transfer $url based to $output_file_name on ::xo::HttpRequest" + ns_log notice "Transfer $url to $output_file_name based on ::xo::HttpRequest" # set r [::xo::HttpRequest new -url $url] set fileChan [open $output_file_name w 0640] @@ -529,14 +529,14 @@ # ... if we have no ns_http, no ::xo::* and we have "wget" # installed, we use it. # - ns_log notice "Transfer $url based on wget" + ns_log notice "Transfer $url to $output_file_name based on wget" catch {exec $wget -O $output_file_name $url} } else { # # Everything else failed, fall back to the original solution. # - ns_log notice "Transfer $url based on ns_httpopen" + ns_log notice "Transfer $url to $output_file_name based on ns_httpopen" # Open a destination file. set fileChan [open $output_file_name w 0640] # Open the channel to the server.