File: log.Rd

package info (click to toggle)
r-cran-irkernel 1.3.2%2Bgit20240429.124f234-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: python: 242; javascript: 69; makefile: 26; sh: 15
file content (23 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (3)
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.
}