Skip to content

Commit b4f6db9

Browse files
committed
pass quiet argument to library()
1 parent dc6f889 commit b4f6db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/engines.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ load_libs <- function(x, quiet, attach = FALSE) {
4141
if (!attach) {
4242
suppressPackageStartupMessages(requireNamespace(pkg, quietly = quiet))
4343
} else {
44-
library(pkg, character.only = TRUE)
44+
library(pkg, character.only = TRUE, quietly = quiet)
4545
}
4646
}
4747
invisible(x)

0 commit comments

Comments
 (0)