打电话“认罪”在普拉克/斯塔曼领导下

发布于 2025-01-01 10:45:51 字数 236 浏览 2 评论 0原文

我有一个运行 TryCatch 语句的 Plack/Starman 应用程序,这些语句从 Carp 模块调用“confess”。但是我注意到坦白输出没有打印到 STDOUT。我尝试将 STDERR 输出路由到 STDOUT '2>&1',但仍然看不到任何内容。我搜索了可能的错误日志文件,但没有成功。这张照片打印到了哪里?我确信这可能是一个简单的答案。日志文件位于哪里?如果这很重要的话,我正在 Ubuntu 机器上运行。

谢谢

I have a Plack/Starman application running with TryCatch statements that call 'confess' from the Carp module. However I notice that the confess output is not printing to STDOUT. I've tried routing STDERR output to STDOUT '2>&1', but still don't see anything. I have search for possible error log files with no luck. Where in the world is this printing to? I am sure it's probably a simple answer. Where are the log files located? I am running on a Ubuntu box if that matters.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光匆匆的小流年 2025-01-08 10:45:51

这里有些混乱。首先,confess(以及池塘中的所有其他鲤鱼)不会打印到 STDOUT:它们打印到 STDERR。其次,您使用 try/catch (美化的 eval)停止异常并因此停止相关的输出,因此除非您自己明确打印它,否则不会打印它。您会看到警告,但不会看到将终止程序的指令消息(好吧,不是 Plack,而是您的脚本),因为它们被您的 try/catch 代码吞没,并且由您决定是否有任何警告应打印其中的内容以及打印位置。

Some confusion here. First, confess (and all the other carps in the pond) don't print to STDOUT: they print to STDERR. Second, you're stopping the exception and hence the associated output using try/catch (glorified eval), so it's not printed unless you explicitly print it yourself. You'll see warnings, but you won't see messages of instructions that would terminate the program (well, not Plack, but your script) because they're swallowed by your try/catch code and it's up to you to decide whether any of it should be printed and where to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文