aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphanium <91544758+phanen@users.noreply.github.com>2025-01-25 12:05:47 +0800
committerGitHub <noreply@github.com>2025-01-24 20:05:47 -0800
commit851137f67905f6038e51b5b7d1490fbedea4faaa (patch)
treecaa36718406ae9991de663baa1c3cd18d7800791
parent931ee5591fa764a769946318e05062098baf7c21 (diff)
downloadrneovim-851137f67905f6038e51b5b7d1490fbedea4faaa.tar.gz
rneovim-851137f67905f6038e51b5b7d1490fbedea4faaa.tar.bz2
rneovim-851137f67905f6038e51b5b7d1490fbedea4faaa.zip
fix(log): log unset $TMPDIR at "debug" level #32137
-rw-r--r--src/nvim/fileio.c2
1 files changed, 1 insertions, 1 deletions
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);
}