Clear all H2O R command and error response logs from the local disk. Used primarily for debugging purposes.

h2o.clearLog()

See also

Examples

# NOT RUN {
library(h2o)
h2o.init()
h2o.startLogging()
ausPath = system.file("extdata", "australia.csv", package="h2o")
australia.hex = h2o.importFile(path = ausPath)
h2o.stopLogging()
h2o.clearLog()
# }