diff --git a/Kernel/Syscalls/execve.cpp b/Kernel/Syscalls/execve.cpp index a06969f905..b3038d4e30 100644 --- a/Kernel/Syscalls/execve.cpp +++ b/Kernel/Syscalls/execve.cpp @@ -504,11 +504,6 @@ int Process::do_exec(NonnullRefPtr main_program_description, Ve m_space = load_result.space.release_nonnull(); MemoryManager::enter_space(*m_space); -#if EXEC_DEBUG - dbgln("Memory layout after ELF load:"); - dump_regions(); -#endif - m_executable = main_program_description->custody(); m_arguments = arguments; m_environment = environment;