我正在寻找一些 Tcl 代码,它们会将puts命令发送到 stdout 的内容复制到某个日志文件中。是的,有可能将所有对 puts 的调用更改为某个自定义函数。但我想让它尽可能透明。我有这个试用代码,但它并不能很好地工作:
set pass_log_output "0"
rename puts _puts
proc puts { args } {
global pass_log_output
if {[info exists pass_log_output]} {
# There can be several cases:
# -nonewline parameter, stdout specified or not
set stdout_dest [ lsearch $args stdout ]
set nonewline [ lsearch $args -nonewline ]
if { $stdout_dest != -1 } {
log_low_level "" [lindex $args [expr $stdout_dest + 1]] ""
} elseif { $nonewline != -1 && [ llength $args ] > 1} {
log_low_level "" [lindex $args [expr $nonewline + 1]] ""
} else {
log_low_level "" [lindex $args 0] ""
}
}
if { [ catch { eval _puts $args } err ] } {
return -code error $err
}
}
log_low_level 函数只是将传递的字符串存储在文件中。到目前为止,我收到此错误:
Tcl Interpreter Error: too many nested evaluations (infinite loop?)