
A sort of quick-and-dirty variant on this:
proc logErrors {varName args} { upvar 0 $varName var if {![info exists var] || [string length $::errorInfo] < [string length [lindex $var end]]} { lappend var $::errorCode $::errorInfo } else { lset var end $::errorInfo } }Set a trace with a fully-qualified variable name as argument:
trace add variable ::errorInfo write {logErrors ::foo::errorLog}This variable will collect an even-sized list of error codes and stack traces. This list can be pretty-printed e.g. like this:
foreach {code info} $::foo::errorLog { puts "Code: $code\nInfo: $info\n" }