Index: openacs-4/packages/acs-templating/tcl/query-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/query-procs.tcl,v diff -u -r1.16 -r1.17 --- openacs-4/packages/acs-templating/tcl/query-procs.tcl 15 Oct 2003 12:35:51 -0000 1.16 +++ openacs-4/packages/acs-templating/tcl/query-procs.tcl 1 Nov 2003 08:45:37 -0000 1.17 @@ -578,7 +578,7 @@ set names [nsv_array names __template_query_persistent_cache] foreach name $names { if { [string match $cache_match $name] } { - ns_log notice "FLUSHING QUERY (persistent): $name" + ns_log debug "template::query::flush_cache: FLUSHING QUERY (persistent): $name" nsv_unset __template_query_persistent_cache $name } } @@ -588,7 +588,7 @@ set names [array names __template_query_persistent_cache] foreach name $names { if { [string match $cache_match $name] } { - ns_log notice "FLUSHING QUERY (request): $name" + ns_log debug "template::query::flush_cache: FLUSHING QUERY (request): $name" unset __template_query_persistent_cache($name) } } @@ -950,7 +950,7 @@ set names [nsv_array names __template_cache_value] foreach name $names { if { [string match $key $name] } { - ns_log notice "FLUSHING CACHE: $name" + ns_log debug "cache: FLUSHING CACHE: $name" nsv_unset __template_cache_value $name } }