tmux在哪里记录OS X上的日志

时间:2016-03-19 05:33:12

标签: macos terminal crash tmux tmuxinator

tmux最近一直在崩溃,我不知道为什么。我想进一步研究它,但我不知道在哪里可以找到任何类型的日志或错误消息。到目前为止,我在谷歌搜索" tmux日志位置"等等空了。

我正在运行OS X,并通过Homebrew安装了tmux。

1 个答案:

答案 0 :(得分:2)

手册页需要一些工作(您可能最初看不到该功能)。但是从源代码(参考tty.c中的2.1版)开始,您可能会看到

    if (debug_level > 3) {
            xsnprintf(out, sizeof out, "tmux-out-%ld.log", (long) getpid());
            fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644);
            if (fd != -1 && fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
                    fatal("fcntl failed");
            tty->log_fd = fd;
    }

-v标志设置debug_level值;重复它会增加价值。返回手册页:

  

<强> -v
  请求详细日志记录。可以多次指定此选项以增加详细程度。日志消息将保存到 tmux-client-PID.log tmux-server-PID.log 文件中在当前目录中,其中PID是服务器或客户端进程的PID。