This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch tymux
in repository terminology.

View the commit online.

commit e07071ecdef8a29c5b641207e176badd22fa6265
Author: [email protected] <[email protected]>
AuthorDate: Mon May 4 22:17:55 2026 -0600

    fix(tymux): silence ERR backtrace on normal native detach EOF
    
    The socket-EOF branch in _cb_tymux_data is now part of the normal
    completion path for the native Ctrl+b d detach flow added in this
    branch. At ERR level, Eina's logger emits a full backtrace; users
    detaching normally were seeing a confusing "Copy & Paste the below…"
    backtrace dump. Downgrading to DBG preserves the diagnostic message
    for debugging unexpected disconnects while restoring quiet operation
    on the happy path. Control flow is unchanged.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
---
 src/bin/termtymux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termtymux.c b/src/bin/termtymux.c
index d60d4953..d91e37b0 100644
--- a/src/bin/termtymux.c
+++ b/src/bin/termtymux.c
@@ -621,7 +621,7 @@ _cb_tymux_data(void *data, Ecore_Fd_Handler *handler EINA_UNUSED)
      }
    if (type < 0)
      {
-        ERR("termtymux: recv error, assuming daemon exit");
+        DBG("termtymux: recv error, assuming daemon exit");
         if (ts->cb_exit.func)
           ts->cb_exit.func(ts->cb_exit.data);
         free(payload);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to