From bfbb6f13b481f20469f8e4b4bceef3df6e8c8043 Mon Sep 17 00:00:00 2001
From: B3n30 <benediktthomas@gmail.com>
Date: Fri, 31 Aug 2018 11:00:34 +0200
Subject: [PATCH] NCCH_COntainer: Add file_path log to Load()

---
 src/core/file_sys/ncch_container.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/core/file_sys/ncch_container.cpp b/src/core/file_sys/ncch_container.cpp
index 8d7b63ccf..e873d0dd9 100644
--- a/src/core/file_sys/ncch_container.cpp
+++ b/src/core/file_sys/ncch_container.cpp
@@ -122,6 +122,7 @@ Loader::ResultStatus NCCHContainer::OpenFile(const std::string& filepath, u32 nc
 }
 
 Loader::ResultStatus NCCHContainer::Load() {
+    LOG_INFO(Service_FS, "Loading NCCH from file {}", filepath);
     if (is_loaded)
         return Loader::ResultStatus::Success;