Parcourir la source

Updated status messages in exporter module

Ivan Arkhipov il y a 5 ans
Parent
commit
fe020b7ffe
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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;