commit 851137f67905f6038e51b5b7d1490fbedea4faaa
parent 931ee5591fa764a769946318e05062098baf7c21
Author: phanium <91544758+phanen@users.noreply.github.com>
Date: Sat, 25 Jan 2025 12:05:47 +0800
fix(log): log unset $TMPDIR at "debug" level #32137
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
}