create.logger()andlogfile()are deprecated in favour oflogger(). They issue deprecation warnings when used.debug(),info(),warn(),error(), andfatal()are deprecated in favour oflog_debug(),log_info(),log_warn(),log_error(), andlog_fatal(), respectively. For performance reasons they do not yet issue deprecation warnings when used.levellog()is deprecated in favour oflog_at(). It issues a deprecation warning when used.logformat()is incompatible with Layouts and has been nonfunctional for many years. It issues a deprecation error when used.is.loglevel(),as.loglevel(), its aliasloglevel(), and S3 generics for the"loglevel"class are now considered an implementation detail and are no longer part of the public API. They issue deprecation warnings when used.verbosity()is similar, in that there is no longer a stable mapping between priority integers and levels. It issues a deprecation warning when used.
Usage
create.logger(logfile = "logfile.log", level = "FATAL", logformat = NULL)
logfile(x)
logfile(x) <- value
# S3 method for class 'logger'
logfile(x)
# S3 method for class 'logger'
logfile(x) <- value
logformat(x)
logformat(x) <- value
is.loglevel(x, ...)
loglevel(i)
as.loglevel(i)
# S3 method for class 'loglevel'
print(x, ...)
# S3 method for class 'loglevel'
as.numeric(x, ...)
# S3 method for class 'loglevel'
as.character(x, ...)
verbosity(v)
levellog(logger, level, ...)
debug(logger, ...)
info(logger, ...)
warn(logger, ...)
error(logger, ...)
fatal(logger, ...)