diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-27 23:58:57 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-28 00:30:34 +0100 |
commit | eb285643ed5dab8125e9c6bc94abd7ef562096a5 (patch) | |
tree | 99bb67ae08b15d4de39a8a98b0f9c051dce97546 /asl/logging/logging_tests.cpp | |
parent | 38ab48b1882f36ed7eb7e50c4fb46ce5d376fbc3 (diff) |
Finish work on deducing this, for now
Diffstat (limited to 'asl/logging/logging_tests.cpp')
-rw-r--r-- | asl/logging/logging_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asl/logging/logging_tests.cpp b/asl/logging/logging_tests.cpp index d531cda..404f6eb 100644 --- a/asl/logging/logging_tests.cpp +++ b/asl/logging/logging_tests.cpp @@ -14,12 +14,12 @@ ASL_TEST(custom_writer) { asl::StringWriter string_writer{}; asl::log::DefaultLogger<asl::StringWriter<>&> logger(string_writer); - + asl::log::register_logger(&logger); ASL_DEFER [&logger]() { asl::log::unregister_logger(&logger); }; - + ASL_LOG_INFO("Hello"); auto sv = string_writer.as_string_view(); |