diff --git a/src/windows-emulator/module/module_manager.cpp b/src/windows-emulator/module/module_manager.cpp index cd92f66f..575ccc50 100644 --- a/src/windows-emulator/module/module_manager.cpp +++ b/src/windows-emulator/module/module_manager.cpp @@ -246,8 +246,6 @@ execution_mode module_manager::detect_execution_mode(const windows_path& executa void module_manager::load_native_64bit_modules(const windows_path& executable_path, const windows_path& ntdll_path, const windows_path& win32u_path, const logger& logger) { - logger.info("Loading native 64-bit modules\n"); - this->executable = this->map_module(executable_path, logger, true); this->ntdll = this->map_module(ntdll_path, logger, true); this->win32u = this->map_module(win32u_path, logger, true); diff --git a/src/windows-emulator/syscall_dispatcher.cpp b/src/windows-emulator/syscall_dispatcher.cpp index 2f04d027..370da9af 100644 --- a/src/windows-emulator/syscall_dispatcher.cpp +++ b/src/windows-emulator/syscall_dispatcher.cpp @@ -101,13 +101,6 @@ void syscall_dispatcher::dispatch(windows_emulator& win_emu) } entry->second.handler(c); - - if (c.write_status && !c.retrigger_syscall) - { - const auto status = static_cast(emu.reg(x86_register::rax)); - win_emu.log.print(color::dark_gray, "Syscall return: %s (0x%X, raw: 0x%X) -> 0x%08X\n", entry->second.name.c_str(), syscall_id, - raw_syscall_id, status); - } } catch (std::exception& e) {