Description Usage Arguments Details See Also Examples
Sets the logger configuration for the pipeline
1 2 3 4 5 6 7 | setLoggerDetails(object, target = "console",
targetFile = "pipelineExecution.out", layout = "layout.simple")
## S4 method for signature 'BaseAnalysisPipeline'
setLoggerDetails(object,
target = "console", targetFile = "pipelineExecution.out",
layout = "layout.simple")
|
object |
A Pipeline object |
target |
A string value. 'console' for appending to console, 'file' for appending to a file, or 'console&file' for both |
targetFile |
File name of the log file in case the target is 'file' |
layout |
Specify the layout according to 'futile.logger' package convention |
This function sets the logger configuration for the pipeline.
Other Package core functions: BaseAnalysisPipeline-class,
MetaAnalysisPipeline-class,
assessEngineSetUp,
checkSchemaMatch,
createPipelineInstance,
exportAsMetaPipeline,
generateOutput,
genericPipelineException,
getInput, getLoggerDetails,
getOutputById,
getPipelinePrototype,
getPipeline, getRegistry,
initDfBasedOnType,
initialize,BaseAnalysisPipeline-method,
loadMetaPipeline,
loadPipeline,
loadPredefinedFunctionRegistry,
loadRegistry, prepExecution,
registerFunction,
savePipeline, saveRegistry,
setInput, updateObject,
visualizePipeline
1 2 3 4 | library(analysisPipelines)
pipelineObj <- AnalysisPipeline(input = iris)
pipelineObj %>>% setLoggerDetails(target = "file",
targetFile = "pipeline.out") -> pipelineObj
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.