This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' @name logger.setup | |
#' @export | |
#' @title Set Up Python-Style Logging | |
#' @param traceLog file name or full path where \code{logger.trace()} messages will be sent | |
#' @param debugLog file name or full path where \code{logger.debug()} messages will be sent | |
#' @param infoLog file name or full path where \code{logger.info()} messages will be sent | |
#' @param warnLog file name or full path where \code{logger.warn()} messages will be sent | |
#' @param errorLog file name or full path where \code{logger.error()} messages will be sent | |
#' @param fatalLog file name or full path where \code{logger.fatal()} messages will be sent | |
#' @return No return value. |