1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/logging.r
\name{log}
\alias{log}
\alias{log_debug}
\alias{log_info}
\alias{log_error}
\title{Kernel logging functions}
\usage{
log_debug(...)
log_info(...)
log_error(...)
}
\arguments{
\item{...}{message to log}
}
\description{
A set of exported logging utilities that have the capability to be used in upstream projects.
Log level and log file can be set via R package options e.g. \code{options(jupyter.log_level = 2L)}
or from the environment variables JUPYTER_LOG_LEVEL and JUPYTER_LOGFILE.
}
|