Index: openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl,v diff -u -r1.79.2.80 -r1.79.2.81 --- openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 26 Aug 2024 13:34:50 -0000 1.79.2.80 +++ openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 27 Aug 2024 17:26:30 -0000 1.79.2.81 @@ -662,11 +662,15 @@ # Run each testcase # foreach testcase_id [lsort $testcase_ids] { - ns_log notice "========================================= start $testcase_id (Errors: [dict get [ns_logctl stats] Error])" + set logStats [ns_logctl stats] + ns_log notice "========================================= start $testcase_id" \ + "(Errors: [dict get $logStats Error], Warnings: [dict get $logStats Warning], Bugs: [dict get $logStats Bug])" aa_test_start aa_run_testcase $testcase_id aa_test_end - ns_log notice "========================================= end $testcase_id (Errors: [dict get [ns_logctl stats] Error])" + set logStats [ns_logctl stats] + ns_log notice "========================================= end $testcase_id" \ + "(Errors: [dict get $logStats Error], Warnings: [dict get $logStats Warning], Bugs: [dict get $logStats Bug])" } #