aboutsummaryrefslogtreecommitdiffstats
path: root/fm.c
diff options
context:
space:
mode:
authorverdant <im@verdant.ee>2026-07-28 17:38:31 +0800
committerverdant <im@verdant.ee>2026-07-28 17:39:08 +0800
commitfef22c2c3bed9c615af1187a3747339c19711966 (patch)
treec202d73a4e7c4291034bd64b5695d65d304ebc49 /fm.c
parent76b479661ae9992932044f9137f2f6d89d9e078b (diff)
downloadsf-fef22c2c3bed9c615af1187a3747339c19711966.tar.gz
sf-fef22c2c3bed9c615af1187a3747339c19711966.zip
Remove debug log
Diffstat (limited to 'fm.c')
-rw-r--r--fm.c3
1 files changed, 0 insertions, 3 deletions
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;