Will stop if the arguments are not screenlogs.
Arguments
- screenlog_1
an screenlog, as created by create_screenlog
- screenlog_2
an screenlog, as created by create_screenlog
See also
Use create_screenlog to create an screenlog
Examples
check_empty_beautier_folder()
screenlog_1 <- create_screenlog(log_every = 1000)
screenlog_2 <- create_screenlog(log_every = 314)
# TRUE
are_equal_screenlogs(screenlog_1, screenlog_1)
#> [1] TRUE
# FALSE
are_equal_screenlogs(screenlog_1, screenlog_2)
#> [1] FALSE
check_empty_beautier_folder()