Extracts error messages from the internal data base and returns them in a table.
getErrorMessages( ids = NULL, missing.as.error = FALSE, reg = getDefaultRegistry() )
ids | [ |
---|---|
missing.as.error | [ |
reg | [ |
[data.table
] with columns “job.id”, “terminated” (logical),
“error” (logical) and “message” (string).
#>#>#>#>#> Error in (function (i) : 3#> [1] FALSEgetErrorMessages(ids, reg = tmp)#> job.id terminated error message #> 1: 1 TRUE FALSE <NA> #> 2: 2 TRUE FALSE <NA> #> 3: 3 TRUE TRUE Error in (function (i) : 3 #> 4: 4 TRUE FALSE <NA> #> 5: 5 FALSE FALSE <NA>getErrorMessages(ids, missing.as.error = TRUE, reg = tmp)#> job.id terminated error message #> 1: 1 TRUE FALSE <NA> #> 2: 2 TRUE FALSE <NA> #> 3: 3 TRUE TRUE Error in (function (i) : 3 #> 4: 4 TRUE FALSE <NA> #> 5: 5 FALSE TRUE [not terminated]