为什么应用程序:start(disk_log)响应错误?

时间:2014-08-23 23:16:16

标签: erlang

我想用application:start / 1启动disk_log,但它会出错。

当使用disk_log:start / 0时,它给出了确定。

(fish@yus-iMac.local)6> application:start(disk_log).
{error,{"no such file or directory","disk_log.app"}}
(fish@yus-iMac.local)7> disk_log:start().
ok

为什么?

1 个答案:

答案 0 :(得分:3)

disk_log不是应用程序,而是属于内核应用程序的服务。所以你无法使用应用程序启动它:start(disk_log),它没有自己的版本(它包含在内核版本中)。