From b1a87b2ee49028f7a35bc39db47833a82cd74e38 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 7 Mar 2014 16:05:29 +0000 Subject: Remove log_debug2 as well and simplify log.c. --- tmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index a804e6f7..7374dd5d 100644 --- a/tmux.c +++ b/tmux.c @@ -73,7 +73,7 @@ logfile(const char *name) if (debug_level > 0) { xasprintf(&path, "tmux-%s-%ld.log", name, (long) getpid()); - log_open(debug_level, path); + log_open(path); free(path); } } -- cgit