Index: openacs-4/packages/xotcl-core/tcl/01-debug-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/01-debug-procs.tcl,v diff -u -N -r1.93.2.26 -r1.93.2.27 --- openacs-4/packages/xotcl-core/tcl/01-debug-procs.tcl 11 Aug 2020 20:44:38 -0000 1.93.2.26 +++ openacs-4/packages/xotcl-core/tcl/01-debug-procs.tcl 9 Oct 2020 17:34:28 -0000 1.93.2.27 @@ -451,20 +451,6 @@ } } - if {[::acs::icanuse "ns_ictl trace idle"]} { - # - # In case the server has way to many connection threads defined, - # broadcast messages might pile up. In these situations, the idle - # callback provides a means to keep these idle connection threads - # up to date. - # - ns_ictl trace idle { - ns_log notice =====IDLE=====START - ::xo::broadcast receive - ns_log notice =====IDLE=====END - } - } - # # Register::xo::at_delete function only once # Index: openacs-4/packages/xotcl-core/tcl/06-param-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/06-param-procs.tcl,v diff -u -N -r1.24.2.12 -r1.24.2.13 --- openacs-4/packages/xotcl-core/tcl/06-param-procs.tcl 3 Sep 2020 08:41:41 -0000 1.24.2.12 +++ openacs-4/packages/xotcl-core/tcl/06-param-procs.tcl 9 Oct 2020 17:34:28 -0000 1.24.2.13 @@ -479,7 +479,7 @@ if {$parameter_obj eq ""} { # We have still no parameter. There must be something significantly wrong. - error "--parameter $parameter for package $package_key, package_id $package_id does not exist" + ns_log warning "parameter $parameter for package $package_key, package_id $package_id does not exist (yet)" } else { $parameter_obj clear_per_package_instance_value $package_id if {[$parameter_obj default_value] ne $value} { Index: openacs-4/packages/xotcl-core/tcl/xotcl-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/Attic/xotcl-init.tcl,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/xotcl-core/tcl/xotcl-init.tcl 9 Oct 2020 17:34:28 -0000 1.1.2.1 @@ -0,0 +1,20 @@ +if {[::acs::icanuse "ns_ictl trace idle"]} { + # + # In case the server has (too) many connection threads defined, + # broadcast messages might pile up. In these situations, the idle + # callback provides a means to keep these idle connection threads + # up to date. + # + ns_ictl trace idle { + ns_log notice =====IDLE===== + ::xo::broadcast receive + } +} + + +# +# Local variables: +# mode: tcl +# tcl-indent-level: 2 +# indent-tabs-mode: nil +# End: