diff options
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; |
