Implement some basic logging for windows

This commit is contained in:
jp9000
2014-04-14 04:02:11 -07:00
parent 1388b749c9
commit fa490fa8c4
5 changed files with 53 additions and 24 deletions

View File

@@ -26,7 +26,7 @@ static inline bool check_path(const char* data, const char *path,
dstr_copy(output, path);
dstr_cat(output, data);
blog(LOG_INFO, "Attempting path: %s\n", output->array);
blog(LOG_DEBUG, "Attempting path: %s\n", output->array);
return os_file_exists(output->array);
}