diff options
author | Lukas Larsson <[email protected]> | 2018-05-03 20:21:59 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2018-05-15 10:21:53 +0200 |
commit | af60ccf4b2b176ff10a16b5285efbeaf4d16d3af (patch) | |
tree | 4bd83e068bfb342012cd062e3be5864bc79fe496 | |
parent | 6dcc96f4c8a14e05398a1ee8c4c5ccc7f2fbe778 (diff) | |
download | otp-af60ccf4b2b176ff10a16b5285efbeaf4d16d3af.tar.gz otp-af60ccf4b2b176ff10a16b5285efbeaf4d16d3af.tar.bz2 otp-af60ccf4b2b176ff10a16b5285efbeaf4d16d3af.zip |
kernel: Fix comment in kernel_config
The error_logger is no longer added here.
-rw-r--r-- | lib/kernel/src/kernel_config.erl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/kernel/src/kernel_config.erl b/lib/kernel/src/kernel_config.erl index 535083ef27..c5ff1887c2 100644 --- a/lib/kernel/src/kernel_config.erl +++ b/lib/kernel/src/kernel_config.erl @@ -30,11 +30,8 @@ %%%----------------------------------------------------------------- %%% This module implements a process that configures the kernel %%% application. -%%% Its purpose is that in the init phase add an error_logger -%%% and when it dies (when the kernel application dies) deleting the -%%% previously installed error_logger. -%%% Also, this process waits for other nodes at startup, if -%%% specified. +%%% Its purpose is that in the init phase waits for other nodes at startup, +%%% if specified. %%%----------------------------------------------------------------- start_link() -> gen_server:start_link(kernel_config, [], []). |