blob: 01e8fd709e0ad5761ff4cecc2fc0354cae10ad5d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|