| 3 | #include <complex> |
| 4 | |
| 5 | int main() { |
| 6 | using namespace utl; |
| 7 | |
| 8 | const auto start = std::chrono::steady_clock::now(); |
| 9 | |
| 10 | log::info("val = " , std::vector{2e-3, 3e-3, 4e-3} ); |
| 11 | log::warn("err = " , std::complex<double>{2e14, 3e28} ); |
| 12 | log::err ("Finished in ", std::chrono::steady_clock::now() - start); |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected