1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/helpers.R
\name{log_with_separator}
\alias{log_with_separator}
\title{Logs a message in a very visible way}
\usage{
log_with_separator(
...,
level = INFO,
namespace = NA_character_,
separator = "=",
width = 80
)
}
\arguments{
\item{...}{R objects that can be converted to a character vector
via the active message formatter function}
\item{level}{log level, see \code{\link[=log_levels]{log_levels()}} for more details}
\item{namespace}{string referring to the \code{logger} environment /
config to be used to override the target of the message record to
be used instead of the default namespace, which is defined by the
R package name from which the logger was called, and falls back
to a common, global namespace.}
\item{separator}{character to be used as a separator}
\item{width}{max width of message -- longer text will be wrapped into multiple lines}
}
\description{
Logs a message in a very visible way
}
\examples{
\dontshow{old <- logger:::namespaces_set()}
log_with_separator("An important message")
log_with_separator("Some critical KPI down!!!", separator = "$")
log_with_separator("This message is worth a {1e3} words")
log_with_separator(paste(
"A very important message with a bunch of extra words that will",
"eventually wrap into a multi-line message for our quite nice demo :wow:"
))
log_with_separator(
paste(
"A very important message with a bunch of extra words that will",
"eventually wrap into a multi-line message for our quite nice demo :wow:"
),
width = 60
)
log_with_separator("Boo!", level = FATAL)
log_layout(layout_blank)
log_with_separator("Boo!", level = FATAL)
logger <- layout_glue_generator(format = "{node}/{pid}/{namespace}/{fn} {time} {level}: {msg}")
log_layout(logger)
log_with_separator("Boo!", level = FATAL, width = 120)
\dontshow{logger:::namespaces_set(old)}
}
\seealso{
\code{\link[=log_separator]{log_separator()}}
}
|