h2o (version 3.44.0.3)

h2o.startLogging: Start Writing H2O R Logs

Description

Begin logging H2o R POST commands and error responses to local disk. Used primarily for debuggin purposes.

Usage

h2o.startLogging(file)

Arguments

file

a character string name for the file, automatically generated

See Also

h2o.stopLogging, h2o.clearLog, h2o.openLog

Examples

Run this code
if (FALSE) {
library(h2o)
h2o.init()
h2o.startLogging()
australia_path = system.file("extdata", "australia.csv", package = "h2o")
australia = h2o.importFile(path = australia_path)
h2o.stopLogging()
}

Run the code above in your browser using DataCamp Workspace