refactor: remove some prints

This commit is contained in:
2026-01-16 03:33:15 +01:00
parent 4a042315b0
commit 1a478196bc
3 changed files with 8 additions and 5 deletions
-2
View File
@@ -36,8 +36,6 @@ cws_response_s *cws_handler_static_file(cws_request_s *request, cws_handler_conf
string_s *filepath = resolve_file_path(string_cstr(request->path), config);
const char *path = string_cstr(filepath);
cws_log_debug("Resolved path: %s", path);
if (!file_exists(path)) {
string_free(filepath);
return cws_handler_not_found(request);