Skip to content

Commit

Permalink
tighten assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Sep 5, 2024
1 parent 0433987 commit 1eb7961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/log_shiny_input_changes.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ log_shiny_input_changes <- function(
stopifnot(inherits(input, "reactivevalues"))
stopifnot(is.character(namespace) && length(namespace) == 1)
stopifnot(is.character(excluded_inputs))
stopifnot(is.character(excluded_pattern) && length(excluded_pattern) <= 1)
stopifnot(is.character(excluded_pattern) && length(excluded_pattern) == 1)
stopifnot(inherits(session, "session_proxy"))

if (logger::TRACE > logger::as.loglevel(get_val("TEAL.LOG_LEVEL", "teal.log_level", "INFO"))) {
Expand Down

0 comments on commit 1eb7961

Please sign in to comment.