We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7345545 commit f9e4f4bCopy full SHA for f9e4f4b
2 files changed
src/shared/platform/posix/core_fs.c
@@ -110,7 +110,7 @@ static int lsdir(const char *path) {
110
}
111
112
while ((entry = readdir(dirp)) != NULL) {
113
- LOG_INF("Found: %s", entry->d_name);
+ LOG_DBG("Found: %s", entry->d_name);
114
115
116
if (closedir(dirp) < 0) {
src/shared/platform/posix/core_internal.h
@@ -137,7 +137,9 @@ void set_argc(int argc);
137
/**
138
* @brief Application version string.
139
*/
140
+#ifndef APP_VERSION_STRING
141
#define APP_VERSION_STRING "0.0.0-dev"
142
+#endif /* APP_VERSION_STRING */
143
144
145
* @brief Default heap buffer size for WAMR (in bytes).
0 commit comments