Skip to content

Commit

Permalink
Merge pull request #20 from cgiachalis/cg/documentation_fix
Browse files Browse the repository at this point in the history
Doc fix: remove duplicate \sQuote{warn} and re-document
  • Loading branch information
eddelbuettel authored Oct 13, 2024
2 parents 7fe5229 + 33b50f7 commit fe57c3f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2024-10-13 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro release version

2024-13-10 Contantinos Giachalis <[email protected]>

* 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 <[email protected]>

* DESCRIPTION (Version, Date): Version 0.0.18
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]",
comment = c(ORCID = "0000-0001-6419-907X")),
Expand Down
2 changes: 1 addition & 1 deletion R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
#'
Expand Down
2 changes: 1 addition & 1 deletion man/log_setup.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
//'
Expand Down

0 comments on commit fe57c3f

Please sign in to comment.