Initial log module

But I have some stuff to do first...
This commit is contained in:
2025-01-26 00:01:31 +01:00
parent deecf07bd1
commit 79aaec3d7d
4 changed files with 26 additions and 0 deletions

26
asl/log/BUILD.bazel Normal file
View File

@ -0,0 +1,26 @@
cc_library(
name = "log",
srcs = [
"log.hpp",
],
hdrs = [
"log.cpp",
],
deps = [
"//asl",
],
visibility = ["//visibility:public"],
)
cc_test(
name = "tests",
srcs = [
"log_tests.cpp"
],
deps = [
":log",
"//asl/testing",
],
visibility = ["//visibility:public"],
)

0
asl/log/log.cpp Normal file
View File

0
asl/log/log.hpp Normal file
View File

0
asl/log/log_tests.cpp Normal file
View File