Raise severity when we can't create a directory

This commit is contained in:
Andreas Öman 2010-05-09 11:49:50 +00:00
parent 3adaea6ec8
commit 7f474c1ec9

View file

@ -149,7 +149,7 @@ makedirs(const char *path)
}
r = errno;
tvhlog(LOG_DEBUG, "dvr", "Unable to create directory \"%s\" -- %s",
tvhlog(LOG_ERR, "dvr", "Unable to create directory \"%s\" -- %s",
path, strerror(r));
return r;
}