Skip to content

Commit 7203175

Browse files
Add a '---' end-of-logged-output line to error message
1 parent 918705b commit 7203175

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future.batchtools
2-
Version: 0.21.0-9001
2+
Version: 0.21.0-9002
33
Depends:
44
R (>= 3.2.0),
55
parallelly,

R/BatchtoolsFutureBackend-class.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,8 @@ await <- function(future, cleanup = TRUE, ...) {
928928
}, error = function(e) NULL)
929929

930930
if (length(info) > 0) {
931-
info <- c("The last few lines of the logged output:", info)
931+
info <- c("The last lines of the logged output:", info)
932+
info <- c(info, "---")
932933
} else {
933934
info <- "No logged output file exist (at the moment)"
934935
}

0 commit comments

Comments
 (0)