1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

Kernel: Silence debug spam on exec

This commit is contained in:
Andreas Kling 2020-06-22 21:18:25 +02:00
parent 8a1dbe5483
commit 4dbbe1885f

View file

@ -822,7 +822,9 @@ int Process::do_exec(NonnullRefPtr<FileDescription> main_program_description, Ve
{
ASSERT(is_ring3());
auto path = main_program_description->absolute_path();
#ifdef EXEC_DEBUG
dbg() << "do_exec(" << path << ")";
#endif
size_t total_blob_size = 0;
for (auto& a : arguments)