Skip to content

Commit 36cd902

Browse files
authored
Update Readme for the logging set_level (rapidsai#1911)
This change updates the README for RMM logging details. The `set_level` call now depends on rapids_logger instead of the old SPD. It's a doc-only, non-breaking change. Authors: - Jigao Luo (https://github.com/JigaoLuo) Approvers: - Bradley Dice (https://github.com/bdice) URL: rapidsai#1911
1 parent a087b7c commit 36cd902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ of more detailed logging. The default is `INFO`. Available levels are `TRACE`, `
657657
658658
Note that to see logging below the `INFO` level, the application must also set the logging level at
659659
run time. C++ applications must must call `rmm::default_logger().set_level()`, for example to enable all
660-
levels of logging down to `TRACE`, call `rmm::default_logger().set_level(spdlog::level::trace)` (and compile
660+
levels of logging down to `TRACE`, call `rmm::default_logger().set_level(rapids_logger::level_enum::trace)` (and compile
661661
librmm with `-DRMM_LOGGING_LEVEL=TRACE`). Python applications must call `rmm.set_logging_level()`,
662662
for example to enable all levels of logging down to `TRACE`, call `rmm.set_logging_level("trace")`
663663
(and compile the RMM Python module with `-DRMM_LOGGING_LEVEL=TRACE`).

0 commit comments

Comments
 (0)