summaryrefslogtreecommitdiff
path: root/asl/logging
diff options
context:
space:
mode:
Diffstat (limited to 'asl/logging')
-rw-r--r--asl/logging/BUILD.bazel4
-rw-r--r--asl/logging/logging.cpp4
-rw-r--r--asl/logging/logging.hpp4
-rw-r--r--asl/logging/logging_tests.cpp4
4 files changed, 16 insertions, 0 deletions
diff --git a/asl/logging/BUILD.bazel b/asl/logging/BUILD.bazel
index 0c8323a..1ddefff 100644
--- a/asl/logging/BUILD.bazel
+++ b/asl/logging/BUILD.bazel
@@ -1,3 +1,7 @@
+# Copyright 2025 Steven Le Rouzic
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
cc_library(
name = "logging",
srcs = [
diff --git a/asl/logging/logging.cpp b/asl/logging/logging.cpp
index a825dd3..edf065d 100644
--- a/asl/logging/logging.cpp
+++ b/asl/logging/logging.cpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#include "asl/logging/logging.hpp"
#include "asl/io/print.hpp"
#include "asl/strings/string_builder.hpp"
diff --git a/asl/logging/logging.hpp b/asl/logging/logging.hpp
index 6ad7cfc..9ff0d08 100644
--- a/asl/logging/logging.hpp
+++ b/asl/logging/logging.hpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#pragma once
#include "asl/base/utility.hpp"
diff --git a/asl/logging/logging_tests.cpp b/asl/logging/logging_tests.cpp
index 404f6eb..b4c9fa6 100644
--- a/asl/logging/logging_tests.cpp
+++ b/asl/logging/logging_tests.cpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#include "asl/logging/logging.hpp"
#include "asl/testing/testing.hpp"
#include "asl/strings/string_builder.hpp"