h2o (version 3.2.0.3)

h2o.stopLogging: Stop Writing H2O R Logs

Description

Halt logging of H2O R POST commands and error responses to local disk. Used primarily for debugging purposes.

Usage

h2o.stopLogging()

Arguments

See Also

h2o.startLogging, h2o.clearLog, h2o.openLog

Examples

Run this code
library(h2o)
localH2O = h2o.init()
h2o.startLogging()
ausPath = system.file("extdata", "australia.csv", package="h2o")
australia.hex = h2o.importFile(localH2O, path = ausPath)
h2o.stopLogging()

Run the code above in your browser using DataLab