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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/updateOptions.R
\name{updateOptions}
\alias{updateOptions}
\alias{updateOptions.character}
\alias{updateOptions.environment}
\alias{updateOptions.Logger}
\title{Changes settings of logger or handler.}
\usage{
updateOptions(container, ...)
\method{updateOptions}{character}(container, ...)
\method{updateOptions}{environment}(container, ...)
\method{updateOptions}{Logger}(container, ...)
}
\arguments{
\item{container}{a logger, its name or a handler.}
\item{...}{options to set for the container.}
}
\description{
Changes settings of logger or handler.
}
\section{Methods (by class)}{
\itemize{
\item \code{character}: Update options for logger identified
by name.
\item \code{environment}: Update options of logger or handler
passed by reference.
\item \code{Logger}: Update options of logger or handler
passed by reference.
}}
|