如何仅在 kdb 中记录错误? (不是结果)

How to do logging for errors only in kdb? (not results)

我想将所有错误记录到日志文件中,而不是查询结果。我在命令行中试过这个:

q test.q >kdb.log

但是它会记录所有内容,甚至是结果中的数据。我只想记录错误。

您可以重定向标准输出 and/or 标准错误:http://code.kx.com/q/ref/syscmds/#1-2-redirect

您也可以从命令行执行此操作:

q test.q 1>stdout.log 2>stderr.log