Print unzip files only when debug printing

This commit is contained in:
Benau
2019-11-30 13:54:35 +08:00
parent e450968bef
commit 77d563d082

View File

@@ -81,7 +81,7 @@ bool extract_zip(const std::string &from, const std::string &to, bool recursive)
if (!recursive)
base = StringUtils::getBasename(base);
Log::info("addons", "Unzipping file '%s'.", base.c_str());
Log::debug("addons", "Unzipping file '%s'.", base.c_str());
IReadFile* src_file =
zip_archive->createAndOpenFile(base.c_str());