diff --git a/src/Core/PS4/Loader/Elf.cpp b/src/Core/PS4/Loader/Elf.cpp index c942adbc..d7a3d925 100644 --- a/src/Core/PS4/Loader/Elf.cpp +++ b/src/Core/PS4/Loader/Elf.cpp @@ -157,7 +157,7 @@ void Elf::Open(const std::string& file_name) } } - DebugDump(); + //DebugDump(); } bool Elf::isSelfFile() const diff --git a/src/Util/log.cpp b/src/Util/log.cpp index 995f5892..18c85f15 100644 --- a/src/Util/log.cpp +++ b/src/Util/log.cpp @@ -1,6 +1,8 @@ #include #include #include +#include +#include @@ -8,6 +10,8 @@ namespace logging { std::vector sinks; int init(bool use_stdout) { + auto f = std::make_unique("%^|%L|: %v%$", spdlog::pattern_time_type::local, std::string("")); // disable eol + spdlog::set_formatter(std::move(f)); sinks.clear();//clear existing sinks if (use_stdout)//if we use stdout window then init it as well sinks.push_back(std::make_shared());