Rename log to logging

This commit is contained in:
2025-02-12 23:34:47 +01:00
parent e297b4182b
commit cb77cbe9ce
5 changed files with 8 additions and 9 deletions

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

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