feat(logger): add timestamp support to log messages

This commit is contained in:
user
2026-07-19 22:57:14 +04:00
parent 15124aa217
commit 223afbea40
5 changed files with 60 additions and 4 deletions
+3 -2
View File
@@ -16,7 +16,8 @@ BUILD_DIR := $(ROOT_DIR)/build
TARGET := $(BUILD_DIR)/liblogger.so
SRC := src/logger.cpp
SRC := src/logger.cpp \
src/time_utils.cpp
.PHONY: all clean
@@ -31,7 +32,7 @@ $(TARGET): $(SRC)
$(CC) \
$(CXXFLAGS) \
-shared \
$< \
$^ \
-o $@ \
$(LDFLAGS)