Last updated on 2026-02-10 00:50:43 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.0.5 | 1.90 | 26.67 | 28.57 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.0.5 | 1.53 | 22.20 | 23.73 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.0.5 | 41.22 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.0.5 | 47.17 | OK | |||
| r-devel-windows-x86_64 | 0.0.5 | 3.00 | 49.00 | 52.00 | OK | |
| r-patched-linux-x86_64 | 0.0.5 | 1.98 | 23.30 | 25.28 | OK | |
| r-release-linux-x86_64 | 0.0.5 | 1.90 | 23.18 | 25.08 | OK | |
| r-release-macos-arm64 | 0.0.5 | OK | ||||
| r-release-macos-x86_64 | 0.0.5 | 2.00 | 26.00 | 28.00 | OK | |
| r-release-windows-x86_64 | 0.0.5 | 3.00 | 49.00 | 52.00 | OK | |
| r-oldrel-macos-arm64 | 0.0.5 | OK | ||||
| r-oldrel-macos-x86_64 | 0.0.5 | 2.00 | 23.00 | 25.00 | OK | |
| r-oldrel-windows-x86_64 | 0.0.5 | 3.00 | 53.00 | 56.00 | OK |
Version: 0.0.5
Check: examples
Result: ERROR
Running examples in ‘spdl-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: setup
> ### Title: Convenience Wrappers for 'RcppSpdlog' Logging From 'spdlog'
> ### Aliases: setup init log filesetup drop set_pattern set_level trace
> ### debug info warn error critical fmt cat stopwatch elapsed
>
> ### ** Examples
>
> spdl::setup("exampleDemo", "warn")
> # and spdl::init("warn") and spdl::log("warn") are shortcuts
> spdl::info("Not seen as level 'info' below 'warn'")
> spdl::warn("This warning message is seen")
[2026-02-09 18:56:54.148] [exampleDemo] [Process: 571106] [warning] This warning message is seen
> spdl::set_level("info")
> spdl::info("Now this informational message is seen too")
[2026-02-09 18:56:54.148] [exampleDemo] [Process: 571106] [info] Now this informational message is seen too
> spdl::info("Calls use fmtlib::fmt {} as we can see {}", "under the hood", 42L)
*** caught segfault ***
address 0x3, cause 'memory not mapped'
Traceback:
1: RcppSpdlog::formatter(s, v)
2: fmt(s, ...)
3: RcppSpdlog::log_info(fmt(s, ...))
4: spdl::info("Calls use fmtlib::fmt {} as we can see {}", "under the hood", 42L)
An irrecoverable exception occurred. R is aborting now ...
Segmentation fault
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.0.5
Check: tests
Result: ERROR
Running ‘simpleTest.R’ [0s/1s]
Running the tests in ‘tests/simpleTest.R’ failed.
Complete output:
>
> spdl::setup("demoForTest", "warn") # new logger
> spdl::set_pattern("[%n] [%l] %v"); # special pattern _without time or pid_ for Rout.save use
>
> spdl::trace("This will not be seen.")
> spdl::debug("Neither will this.")
> spdl::info("Nor this.")
> spdl::warn("But we will see this message")
[demoForTest] [warning] But we will see this message
> spdl::warn("Format {} and {} and {}", 42L, 1.23, TRUE)
*** caught segfault ***
address (nil), cause 'unknown'
Traceback:
1: RcppSpdlog::formatter(s, v)
2: fmt(s, ...)
3: RcppSpdlog::log_warn(fmt(s, ...))
4: spdl::warn("Format {} and {} and {}", 42L, 1.23, TRUE)
An irrecoverable exception occurred. R is aborting now ...
Segmentation fault
Flavor: r-devel-linux-x86_64-debian-gcc