Erlang:如何查看远程节点上生成的进程中 io:format/2 调用的输出
我正在开发一个去中心化的 Erlang 应用程序。我目前正在一台 PC 上工作,并通过使用 -sname
标志初始化 erl
来创建多个节点。
当我在其主节点上使用 spawn/4
生成一个进程时,我可以在其主 erl 中看到该进程内调用
io:format/2
生成的输出实例。
当我结合使用 spawn/4
和 register_name
远程生成进程时,io:format/2
的输出有时会重定向回进行远程 spawn/4
调用的 erl
实例,有时保持完全不可见。
同样,当我使用 rpc:call/4 时,io:format/2 调用的输出将重定向回 erl 实例,其中 ` rpc:call/4' 调用已进行。
如何让进程将调试输出发送回其父 erl 实例?
I am working on a decentralized Erlang application. I am currently working on a single PC and creating multiple nodes by initializing erl
with the -sname
flag.
When I spawn a process using spawn/4
on its home node, I can see output generated by calls io:format/2
within that process in its home erl
instance.
When I spawn a process remotely by using spawn/4
in combination with register_name
, output of io:format/2
is sometimes redirected back to the erl
instance where the remote spawn/4
call was made, and sometimes remains completely invisible.
Similarly, when I use rpc:call/4
, output of io:format/2
calls is redirected back to the erl
instance where the `rpc:call/4' call is made.
How do you get a process to emit debugging output back to its parent erl
instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用第一个节点的 erlang:group_leader() 的结果,向第二个节点上的 io:format/3 提供第一个参数。
启动第一个节点,全局注册本地 shell 进程组领导者:
启动第二个节点,连接,使用全局注册进程作为 io 设备
您将在第一个节点中看到测试输出。
这与克里斯蒂安建议的方式相同,只是更明确一点。因此,您可以使用 error_logger 进行生产日志记录,使用 io:format/3 进行快速调试。
You can supply 1st argument to io:format/3 on the second node, using result of erlang:group_leader() from the first node.
Starting first node, registering local shell process group leader globally:
Starting second node, connecting, using globally registered process as io device
You will see test output in the first node.
This is the same way that Christian suggested, just a bit more explicit. So you can have error_logger for production logging and io:format/3 just for quick debugging.
您所看到的是进程的组领导者设置为它们产生的节点上的 pid。请参阅 erlang:group_leader。组长是他们将输出发送到的地方。
您将此输出称为“调试输出”,因此您确定不想在节点上启动 sasl 应用程序并使用 error_logger?
What you are seeing is processes with their group leader set to a pid on the node they were spawned from. See erlang:group_leader. The group leader is where they send their output to.
You call this output "debugging output", so are you sure that you dont want to start the sasl application on the nodes and use error_logger?
请参阅我的答案问题 Erlang:RPC 到节点并在该节点上输出节点了解如何实现输出到不同地方的一些细节。没有提到的是,即使在运行 shell 中也可以运行远程 shell。只需按
Ctrl+G
(启动时提示^G
),然后在h
下即可获得帮助(按h
然后输入Enter
)。示例:假设您已通过 erl -sname foo 运行 erlang 节点。比:
See mine answer to question Erlang : RPC to a node with output on that node for some details how to achieve output to different places. Which is not mentioned, you can run remote shell even in running shell. Just press
Ctrl+G
(^G
hint on startup) and than you have help underh
(pressh
and thanEnter
).Example: Assume you have running erlang node by
erl -sname foo
. Than: