aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-27 11:49:18 -0400
committerLioncash <mathew1800@gmail.com>2018-04-27 11:57:52 -0400
commit843dd62c81cfdfedffb27ff475ce7a4e7d85ee79 (patch)
tree80531b4168f9e110b14e7d46a9388111803d4538 /src/core/hle/kernel/process.cpp
parentacede1f1d3309e629b1ddc55ad22f920fe50f681 (diff)
core: Replace usages of LOG_GENERIC with new fmt-capable equivalents
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 751a0524d..b423a3477 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -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);