add logging code and get it setup

This commit is contained in:
Nayan
2025-05-08 20:54:10 -04:00
parent 6a17569284
commit 6468cc8d55
5 changed files with 103 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ RELEASE_FLAGS = -Wall -Wextra
LFLAGS = -lpthread
# Source files
SRCS = webserver.c client_handler.c request_handler.c http_stuff.c response_builder.c
SRCS = webserver.c client_handler.c request_handler.c http_stuff.c response_builder.c logging.c
# Object files definition
OBJS = $(SRCS:.c=.o)