From 172af75ec16369c89ccc17720c1ff22a929573df Mon Sep 17 00:00:00 2001 From: x1a0 Date: Wed, 2 Sep 2026 10:49:30 +0200 Subject: [PATCH] fix: use bright black for log timestamps, not pure black Pure black (ANSI 30) is invisible on dark-background terminals since it matches the default background. Bright black (ANSI 90) renders as gray and stays visible regardless of terminal theme. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01WdESvDRS3hBaTcCsoaPQgA --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 08f0d3f..5785543 100644 --- a/main.lua +++ b/main.lua @@ -18,7 +18,7 @@ local write_log = function(line, type) current_log_file = assert(io.open(path, "a")) end - local log_line = cformat("[%s]%s %s\n", os.date("%H:%M:%S"), type, line) + local log_line = cformat("[%s]%s %s\n", os.date("%H:%M:%S"), type, line) if current_log_file ~= nil then assert(current_log_file:write(log_line)) assert(current_log_file:flush())