Skip to content

Commit 851137f

Browse files
authored
fix(log): log unset $TMPDIR at "debug" level neovim#32137
1 parent 931ee55 commit 851137f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nvim/fileio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3277,7 +3277,7 @@ static void vim_mktempdir(void)
32773277
if (!os_isdir(tmp)) {
32783278
if (strequal("$TMPDIR", temp_dirs[i])) {
32793279
if (!os_getenv("TMPDIR")) {
3280-
WLOG("$TMPDIR is unset");
3280+
DLOG("$TMPDIR is unset");
32813281
} else {
32823282
WLOG("$TMPDIR tempdir not a directory (or does not exist): \"%s\"", tmp);
32833283
}

0 commit comments

Comments
 (0)