Index: openacs-4/packages/dotlrn/tcl/dotlrn-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/tcl/dotlrn-init.tcl,v diff -u -r1.33 -r1.33.2.1 --- openacs-4/packages/dotlrn/tcl/dotlrn-init.tcl 9 Aug 2002 18:39:25 -0000 1.33 +++ openacs-4/packages/dotlrn/tcl/dotlrn-init.tcl 17 Oct 2002 12:23:12 -0000 1.33.2.1 @@ -76,14 +76,16 @@ # init of each applet NOTE: this applet_add proc _must_ be able to be # called repeatedly since this script is eval'd at every server startup foreach applet [db_list select_not_installed_applets {}] { - dotlrn_applet::applet_call $applet AddApplet [list] + if {[catch {dotlrn_applet::applet_call $applet AddApplet [list]} errMsg]} { + ns_log warning "dotlrn-init: AddApplet $applet failed\n$errMsg" + } } ns_log notice "dotlrn-init: dotlrn is instantiated, about to call dotlrn::init" if {![dotlrn::is_initialized]} { dotlrn::init } - ns_log notice "dotlrn-init: about to call dotlrn_class:init" + ns_log notice "dotlrn-init: about to call dotlrn_class::init" if {![dotlrn_class::is_initialized]} { dotlrn_class::init }