标签: ubuntu phantomjs syslog
我想将消息发送到syslog守护程序。
与
user@ubuntu:~/phantomjs$ logger "hello world"
会显示
Apr 18 03:53:45 ubuntu user: hello world
我一直用谷歌搜索syslog in phantomjs,我检查的所有结果都无关紧要。创建这个问题,我希望得到一个相关的结果:)
我使用的是ubuntu和phantomjs 1.9.7。
答案 0 :(得分:1)
您需要spawn a logger。
示例:
require("child_process").spawn("logger 'jase is a pollywaffle'");