diff --git a/ChangeLog b/ChangeLog index e649f3b..3d26a07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2024-10-13 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro release version + +2024-13-10 Contantinos Giachalis + + * src/interface.cpp (log_setup): Documentation fix for duplicate log level + * man/log_setup.Rd: Idem + * R/RcppExports.R: Idem + 2024-09-10 Dirk Eddelbuettel * DESCRIPTION (Version, Date): Version 0.0.18 diff --git a/DESCRIPTION b/DESCRIPTION index 42e3aa8..54db07a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: RcppSpdlog Type: Package Title: R and C++ Interfaces to 'spdlog' C++ Header Library for Logging -Version: 0.0.18 -Date: 2024-09-10 +Version: 0.0.18.1 +Date: 2024-10-13 License: GPL (>= 2) Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org", comment = c(ORCID = "0000-0001-6419-907X")), diff --git a/R/RcppExports.R b/R/RcppExports.R index 1b3cea5..e05168c 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -71,7 +71,7 @@ formatter <- function(s, v) { #' } #' #' Supported logging levels are, in order of increasing threshold values, \sQuote{trace}, -#' \sQuote{debug}, \sQuote{warn}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and +#' \sQuote{debug}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and #' \sQuote{critical}. A message issued below the current threshold is not displayed whereas #' a message at or above the current threshold is displayed. The default level is \sQuote{warn}. #' diff --git a/man/log_setup.Rd b/man/log_setup.Rd index da86cf8..2642c00 100644 --- a/man/log_setup.Rd +++ b/man/log_setup.Rd @@ -74,7 +74,7 @@ Several functions are provided: } Supported logging levels are, in order of increasing threshold values, \sQuote{trace}, -\sQuote{debug}, \sQuote{warn}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and +\sQuote{debug}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and \sQuote{critical}. A message issued below the current threshold is not displayed whereas a message at or above the current threshold is displayed. The default level is \sQuote{warn}. } diff --git a/src/interface.cpp b/src/interface.cpp index c58abe2..c7ac0ee 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -34,7 +34,7 @@ const std::string default_log_pattern = "[%Y-%m-%d %H:%M:%S.%e] [%n] [Process: % //' } //' //' Supported logging levels are, in order of increasing threshold values, \sQuote{trace}, -//' \sQuote{debug}, \sQuote{warn}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and +//' \sQuote{debug}, \sQuote{info}, \sQuote{warn}, \sQuote{error}, and //' \sQuote{critical}. A message issued below the current threshold is not displayed whereas //' a message at or above the current threshold is displayed. The default level is \sQuote{warn}. //'