Index: openacs-4/packages/adserver/tcl/adserver-ad-monitor-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/adserver/tcl/adserver-ad-monitor-procs.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/adserver/tcl/adserver-ad-monitor-procs.tcl 10 Sep 2002 22:22:19 -0000 1.2 +++ openacs-4/packages/adserver/tcl/adserver-ad-monitor-procs.tcl 1 Nov 2003 08:45:37 -0000 1.3 @@ -23,13 +23,13 @@ ns_share ad_host_administrator_last_notified if $log_p { # usually the error will be in the error log anyway - ns_log Notice "ad_notify_host_administrator: $subject\n\n$body\n\n" + ns_log notice "ad_notify_host_administrator: $subject\n\n$body\n\n" } if { [ns_time] > [expr $ad_host_administrator_last_notified + 900] } { # more than 15 minutes have elapsed since last note set ad_host_administrator_last_notified [ns_time] if [catch { ns_sendmail [ad_host_administrator] [ad_system_owner] $subject $body } errmsg] { - ns_log Error "failed sending email note to [ad_host_administrator]" + ns_log Error "ad_notify_host_administrator: failed sending email note to [ad_host_administrator]: $subject\n\n$body\n\n " } } }