From 7d81b84dd8ac90e757e78fca33926accff2b15dd Mon Sep 17 00:00:00 2001 From: David Cernat Date: Mon, 26 Jun 2017 06:49:58 +0300 Subject: [PATCH] [Client] Write list of loaded plugins to log --- apps/openmw/mwmp/Networking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/mwmp/Networking.cpp b/apps/openmw/mwmp/Networking.cpp index a494ff885..2b69c7383 100644 --- a/apps/openmw/mwmp/Networking.cpp +++ b/apps/openmw/mwmp/Networking.cpp @@ -332,7 +332,7 @@ void Networking::preInit(std::vector &content, Files::Collections & hashList.push_back(crc32); checksums.push_back(make_pair(*it, hashList)); - printf("idx: %d\tchecksum: %X\tfile: %s\n", idx, crc32, col.getPath(*it).string().c_str()); + LOG_APPEND(Log::LOG_WARN, "idx: %d\tchecksum: %X\tfile: %s\n", idx, crc32, col.getPath(*it).string().c_str()); } else throw std::runtime_error("Plugin doesn't exist.");