Index: openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl,v diff -u -N -r1.13 -r1.14 --- openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 27 Jan 2003 14:12:21 -0000 1.13 +++ openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 4 Feb 2003 08:50:35 -0000 1.14 @@ -1213,8 +1213,6 @@ @author Lars Pind (lars@pinds.com) @creation-date 19 July 2000 } { - ns_log Notice "LARS: Converting from $from to $to, text=$text" - set valid_froms { text/enhanced text/plain text/fixed-width text/html } set valid_tos { text/plain text/html } @@ -1228,9 +1226,6 @@ if { [lsearch $valid_tos $to] == -1 } { error "Unknown text input format, '$to'. Valid formats are $valid_tos." } - - ns_log Notice "LARS: Actually from $from to $to" - # Do the conversion switch $from { @@ -1276,8 +1271,6 @@ } } - ns_log Notice "LARS: Converted from $from to $to, result=$text" - return $text }