From 16f910e3507bdb09d10d4165b7317e71b3626661 Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 10 Jul 2023 11:30:28 +0300 Subject: [PATCH] sys_fs: Fix log levels --- rpcs3/Emu/Cell/lv2/sys_fs.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_fs.cpp b/rpcs3/Emu/Cell/lv2/sys_fs.cpp index ade04932b4..853d48f086 100644 --- a/rpcs3/Emu/Cell/lv2/sys_fs.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_fs.cpp @@ -3028,7 +3028,7 @@ error_code sys_fs_truncate2(ppu_thread&, u32 fd, u64 size) error_code sys_fs_get_mount_info_size(ppu_thread&, vm::ptr len) { - sys_fs.trace("sys_fs_get_mount_info_size(len=*0x%x)", len); + sys_fs.warning("sys_fs_get_mount_info_size(len=*0x%x)", len); if (!len) { @@ -3042,7 +3042,7 @@ error_code sys_fs_get_mount_info_size(ppu_thread&, vm::ptr len) error_code sys_fs_get_mount_info(ppu_thread&, vm::ptr info, u64 len, vm::ptr out_len) { - sys_fs.trace("sys_fs_get_mount_info(info=*0x%x, len=0x%x, out_len=*0x%x)", info, len, out_len); + sys_fs.warning("sys_fs_get_mount_info(info=*0x%x, len=0x%x, out_len=*0x%x)", info, len, out_len); if (!info || !out_len) { @@ -3058,7 +3058,7 @@ error_code sys_fs_newfs(ppu_thread& ppu, vm::cptr dev_name, vm::cptr { ppu.state += cpu_flag::wait; - sys_fs.trace("sys_fs_newfs(dev_name=%s, file_system=%s, unk1=0x%x, str1=%s)", dev_name, file_system, unk1, str1); + sys_fs.warning("sys_fs_newfs(dev_name=%s, file_system=%s, unk1=0x%x, str1=%s)", dev_name, file_system, unk1, str1); const auto [dev_error, device_name] = translate_to_sv(dev_name, false); @@ -3106,7 +3106,7 @@ error_code sys_fs_mount(ppu_thread& ppu, vm::cptr dev_name, vm::cptr { ppu.state += cpu_flag::wait; - sys_fs.trace("sys_fs_mount(dev_name=%s, file_system=%s, path=%s, unk1=0x%x, prot=%d, unk3=0x%x, str1=%s, str_len=%d)", dev_name, file_system, path, unk1, prot, unk3, str1, str_len); + sys_fs.warning("sys_fs_mount(dev_name=%s, file_system=%s, path=%s, unk1=0x%x, prot=%d, unk3=0x%x, str1=%s, str_len=%d)", dev_name, file_system, path, unk1, prot, unk3, str1, str_len); const auto [dev_error, device_name] = translate_to_sv(dev_name, false); @@ -3209,7 +3209,7 @@ error_code sys_fs_unmount(ppu_thread& ppu, vm::cptr path, s32 unk1, s32 un { ppu.state += cpu_flag::wait; - sys_fs.trace("sys_fs_unmount(path=%s, unk1=0x%x, unk2=0x%x)", path, unk1, unk2); + sys_fs.warning("sys_fs_unmount(path=%s, unk1=0x%x, unk2=0x%x)", path, unk1, unk2); const auto [path_error, vpath] = translate_to_sv(path);