Files
asl/asl/log/log_tests.cpp
2025-01-26 22:45:42 +01:00

11 lines
205 B
C++

#include <asl/log/log.hpp>
#include <asl/testing/testing.hpp>
ASL_TEST(log)
{
asl::log::log(asl::log::kInfo, asl::source_location{}, "Hello, {}!", "world"_sv);
ASL_LOG_ERROR("Oh no! {}", 42);
}