mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
VFS: add logging to mount
This commit is contained in:
parent
4323ca4a01
commit
da91a841b7
@ -14,6 +14,8 @@
|
||||
|
||||
#include <thread>
|
||||
|
||||
LOG_CHANNEL(vfs_log, "VFS");
|
||||
|
||||
struct vfs_directory
|
||||
{
|
||||
// Real path (empty if root or not exists)
|
||||
@ -45,9 +47,12 @@ bool vfs::mount(std::string_view vpath, std::string_view path)
|
||||
if (vpath.empty())
|
||||
{
|
||||
// Empty relative path, should set relative path base; unsupported
|
||||
vfs_log.error("Cannot mount empty path to \"%s\"", path);
|
||||
return false;
|
||||
}
|
||||
|
||||
const std::string_view vpath_backup = vpath;
|
||||
|
||||
for (std::vector<vfs_directory*> list{&table.root};;)
|
||||
{
|
||||
// Skip one or more '/'
|
||||
@ -56,6 +61,7 @@ bool vfs::mount(std::string_view vpath, std::string_view path)
|
||||
if (pos == 0)
|
||||
{
|
||||
// Mounting relative path is not supported
|
||||
vfs_log.error("Cannot mount relative path \"%s\" to \"%s\"", vpath_backup, path);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -63,6 +69,7 @@ bool vfs::mount(std::string_view vpath, std::string_view path)
|
||||
{
|
||||
// Mounting completed
|
||||
list.back()->path = path;
|
||||
vfs_log.notice("Mounted path \"%s\" to \"%s\"", vpath_backup, path);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user