浏览代码

Correct removal of reinstall_handler.

Signed-off-by: Brian L. Troutwine <brian.troutwine@adroll.com>
pull/328/head
Brian L. Troutwine 9 年前
父节点
当前提交
fb0064824b
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      src/lager_handler_watcher.erl

+ 3
- 0
src/lager_handler_watcher.erl 查看文件

@ -80,6 +80,9 @@ handle_info({gen_event_EXIT, Module, Reason}, #state{module=Module,
ok
end,
{noreply, State};
handle_info(reinstall_handler, #state{module=Module, config=Config, sink=Sink} = State) ->
install_handler(Sink, Module, Config),
{noreply, State};
handle_info(reboot, State) ->
lager_app:boot(),
{noreply, State};

正在加载...
取消
保存