From 851137f67905f6038e51b5b7d1490fbedea4faaa Mon Sep 17 00:00:00 2001 From: phanium <91544758+phanen@users.noreply.github.com> Date: Sat, 25 Jan 2025 12:05:47 +0800 Subject: [PATCH] fix(log): log unset $TMPDIR at "debug" level #32137 --- src/nvim/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 1c9903695e..61b252f823 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -3277,7 +3277,7 @@ static void vim_mktempdir(void) if (!os_isdir(tmp)) { if (strequal("$TMPDIR", temp_dirs[i])) { if (!os_getenv("TMPDIR")) { - WLOG("$TMPDIR is unset"); + DLOG("$TMPDIR is unset"); } else { WLOG("$TMPDIR tempdir not a directory (or does not exist): \"%s\"", tmp); }