aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/test/logger_std_h_SUITE.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2019-03-04 19:15:24 +0100
committerSiri Hansen <[email protected]>2019-03-08 09:35:44 +0100
commite2af137524ac6a645689daf309871893dcc655a1 (patch)
treed1efb019a0d6e812a305d7a626592a2d2965f355 /lib/kernel/test/logger_std_h_SUITE.erl
parent56cacefda4f18c8fdc45839b6bec1d07d0d2d78e (diff)
downloadotp-e2af137524ac6a645689daf309871893dcc655a1.tar.gz
otp-e2af137524ac6a645689daf309871893dcc655a1.tar.bz2
otp-e2af137524ac6a645689daf309871893dcc655a1.zip
[logger] Add option file_check to logger_std_h
OTP-15663 This option indicates how often the handler shall check if the log file still exists and if the inode is changed.
Diffstat (limited to 'lib/kernel/test/logger_std_h_SUITE.erl')
-rw-r--r--lib/kernel/test/logger_std_h_SUITE.erl11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/kernel/test/logger_std_h_SUITE.erl b/lib/kernel/test/logger_std_h_SUITE.erl
index c3cae49ce8..0c5516f82b 100644
--- a/lib/kernel/test/logger_std_h_SUITE.erl
+++ b/lib/kernel/test/logger_std_h_SUITE.erl
@@ -650,7 +650,7 @@ file_opts(Config) ->
filters=>?DEFAULT_HANDLER_FILTERS([?MODULE]),
formatter=>{?MODULE,self()}}),
- ModOpts = [delayed_write|OkFileOpts],
+ ModOpts = [delayed_write|OkFileOpts],
#{cb_state := #{handler_state := #{type:=file,
file:=Log,
modes:=ModOpts}}} =
@@ -692,7 +692,8 @@ sync(Config) ->
Type = {file,Log},
ok = logger:add_handler(?MODULE,
logger_std_h,
- #{config => #{type => Type},
+ #{config => #{type => Type,
+ file_check => 10000},
filter_default=>log,
filters=>?DEFAULT_HANDLER_FILTERS([?MODULE]),
formatter=>{?MODULE,nl}}),
@@ -1457,7 +1458,7 @@ rotate_size_reopen(Config) ->
{ok,#file_info{size=580}} = file:read_file_info(Log),
{ok,#file_info{size=1020}} = file:read_file_info(Log++".0"),
ok.
-rotate_size_reopen(cleanup,Config) ->
+rotate_size_reopen(cleanup,_Config) ->
ok = stop_handler(?MODULE).
rotation_opts(Config) ->
@@ -1577,7 +1578,7 @@ rotation_opts(Config) ->
compress_on_rotate:=false}}} =
logger_olp:info(h_proc_name()),
ok.
-rotation_opts(cleanup,Config) ->
+rotation_opts(cleanup,_Config) ->
ok = stop_handler(?MODULE).
rotation_opts_restart_handler(Config) ->
@@ -1659,7 +1660,7 @@ rotation_opts_restart_handler(Config) ->
[_] = filelib:wildcard(Log++".*"),
ok.
-rotation_opts_restart_handler(cleanup,Config) ->
+rotation_opts_restart_handler(cleanup,_Config) ->
ok = stop_handler(?MODULE).
%%%-----------------------------------------------------------------