mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
fix(log): log unset $TMPDIR at "debug" level #32137
This commit is contained in:
@ -3277,7 +3277,7 @@ static void vim_mktempdir(void)
|
|||||||
if (!os_isdir(tmp)) {
|
if (!os_isdir(tmp)) {
|
||||||
if (strequal("$TMPDIR", temp_dirs[i])) {
|
if (strequal("$TMPDIR", temp_dirs[i])) {
|
||||||
if (!os_getenv("TMPDIR")) {
|
if (!os_getenv("TMPDIR")) {
|
||||||
WLOG("$TMPDIR is unset");
|
DLOG("$TMPDIR is unset");
|
||||||
} else {
|
} else {
|
||||||
WLOG("$TMPDIR tempdir not a directory (or does not exist): \"%s\"", tmp);
|
WLOG("$TMPDIR tempdir not a directory (or does not exist): \"%s\"", tmp);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user