diff options
| author | verdant <im@verdant.ee> | 2026-07-28 17:38:31 +0800 |
|---|---|---|
| committer | verdant <im@verdant.ee> | 2026-07-28 17:39:08 +0800 |
| commit | fef22c2c3bed9c615af1187a3747339c19711966 (patch) | |
| tree | c202d73a4e7c4291034bd64b5695d65d304ebc49 /fm.c | |
| parent | 76b479661ae9992932044f9137f2f6d89d9e078b (diff) | |
| download | sf-fef22c2c3bed9c615af1187a3747339c19711966.tar.gz sf-fef22c2c3bed9c615af1187a3747339c19711966.zip | |
Remove debug log
Diffstat (limited to 'fm.c')
| -rw-r--r-- | fm.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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; |
