core: Replace usages of LOG_GENERIC with new fmt-capable equivalents

This commit is contained in:
Lioncash 2018-04-27 11:49:18 -04:00
parent a64bd36ba7
commit 44d2f427d4
3 changed files with 4 additions and 6 deletions

View file

@ -134,7 +134,7 @@ void Process::Run(VAddr entry_point, s32 main_thread_priority, u32 stack_size) {
HandleSpecialMapping(vm_manager, mapping);
}
vm_manager.LogLayout(Log::Level::Debug);
vm_manager.LogLayout();
status = ProcessStatus::Running;
Kernel::SetupMainThread(entry_point, main_thread_priority, this);