瀏覽代碼

Updated status messages in exporter module

Ivan Arkhipov 5 年之前
父節點
當前提交
fe020b7ffe
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/DatSubsystems/DatExporter.cpp

+ 2 - 2
src/DatSubsystems/DatExporter.cpp

@@ -30,7 +30,7 @@ namespace LOTRO_DAT {
 
         dat->GetStatusModule().SetStatus(DatStatus::E_EXTRACTING);
         dat->GetStatusModule().SetPercentage(0);
-        dat->GetStatusModule().SetDebugMessage("Starting extracting files of type " + std::to_string(type));
+        dat->GetStatusModule().SetDebugMessage("Starting extracting files of type " + std::to_string(type) + ", this may take long time, please be patient!");
         LOG(INFO) << "Extracting files by type " + std::to_string(type) + "to database...";
 
         auto operation = dat->GetFileSystem().PerformOperationOnAllFiles([&iterated_files, &success_exported, this, type, &output_directory_path](std::shared_ptr<SubFile>& file) -> void {
@@ -122,7 +122,7 @@ namespace LOTRO_DAT {
 
         dat->GetStatusModule().SetStatus(DatStatus::E_EXTRACTING);
         dat->GetStatusModule().SetPercentage(0);
-        dat->GetStatusModule().SetDebugMessage("Initialising extraction of files by type " + std::to_string(type) + "to database...");
+        dat->GetStatusModule().SetDebugMessage("Initialising extraction of files by type " + std::to_string(type) + "to database... This may take long time, please be patient!\"");
         LOG(INFO) << "Extracting files by type " + std::to_string(type) + "to database...";
 
         int success_exported = 0;