summaryrefslogtreecommitdiff
path: root/lib/kernel/src/logger_olp.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kernel/src/logger_olp.erl')
-rw-r--r--lib/kernel/src/logger_olp.erl8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/kernel/src/logger_olp.erl b/lib/kernel/src/logger_olp.erl
index 068fbe447b..1379f8cf54 100644
--- a/lib/kernel/src/logger_olp.erl
+++ b/lib/kernel/src/logger_olp.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2017-2020. All Rights Reserved.
+%% Copyright Ericsson AB 2017-2022. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -193,11 +193,13 @@ init([Name,Module,Args,Options]) ->
gen_server:enter_loop(?MODULE, [], State);
Error ->
unregister(Name),
- proc_lib:init_ack(Error)
+ proc_lib:init_ack(Error),
+ ignore %% Just to shut Dialyzer up - ignored
catch
_:Error ->
unregister(Name),
- proc_lib:init_ack(Error)
+ proc_lib:init_ack(Error),
+ ignore %% Just to shut Dialyzer up - ignored
end.
%% This is the synchronous load event.