Skip to content

Commit

Permalink
pass quiet argument to library()
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilHvitfeldt committed Aug 8, 2023
1 parent dc6f889 commit b4f6db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/engines.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ load_libs <- function(x, quiet, attach = FALSE) {
if (!attach) {
suppressPackageStartupMessages(requireNamespace(pkg, quietly = quiet))
} else {
library(pkg, character.only = TRUE)
library(pkg, character.only = TRUE, quietly = quiet)
}
}
invisible(x)
Expand Down

0 comments on commit b4f6db9

Please sign in to comment.