Ver Fonte

[component][DFS] Change the log level on dfs_file_open() func.

armink há 6 anos atrás
pai
commit
4f7c06f923
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      components/dfs/src/dfs_file.c

+ 1 - 1
components/dfs/src/dfs_file.c

@@ -111,7 +111,7 @@ int dfs_file_open(struct dfs_fd *fd, const char *path, int flags)
         fd->flags |= DFS_F_DIRECTORY;
     }
 
-    LOG_I("open successful");
+    LOG_D("open successful");
     return 0;
 }