From fef22c2c3bed9c615af1187a3747339c19711966 Mon Sep 17 00:00:00 2001 From: verdant Date: Tue, 28 Jul 2026 17:38:31 +0800 Subject: Remove debug log --- fm.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'fm.c') diff --git a/fm.c b/fm.c index 5a308fd..92526c3 100644 --- a/fm.c +++ b/fm.c @@ -114,7 +114,6 @@ get_permission(mode_t mode, char *str) file_list * fm_getdir(file_list *list, const char *path) { - log_write(LOG_INFO, "path = %s", path); DIR *dir = opendir(path); if (!dir) { log_write(LOG_ERR, "Cannot open directory"); @@ -122,7 +121,6 @@ fm_getdir(file_list *list, const char *path) } file_list *new_list = list; - LOG_WRITE_INFO("list->cap = %zu", list->cap); if (new_list->items && new_list->cap > 0) { LOG_WRITE_INFO("Initialize list"); @@ -340,7 +338,6 @@ fm_cd_up(fm_info *info) file_list *new_list = fm_getdir(info->cur, info->cwd); if (new_list) { info->cur = new_list; - LOG_WRITE_INFO("11: %s", info->cwd); } info->cursor = 0; -- cgit v1.2.3