PhantomJS并记录到syslog

时间:2014-04-18 01:56:17

标签: 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。

1 个答案:

答案 0 :(得分:1)

您需要spawn a logger

示例:

require("child_process").spawn("logger 'jase is a pollywaffle'");