Skip to content

Commit

Permalink
fix: add log info for only generating and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SaneEngineer committed Aug 3, 2024
1 parent eecd654 commit ba2f09a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/GidFileCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,8 @@ namespace GrassControl
auto only = Util::StringHelpers::split(Config::OnlyPregenerateWorldSpaces, Char, true);
auto onlySet = std::unordered_set<std::string, case_insensitive_unordered_set::hash, case_insensitive_unordered_set::comp>();
for (const auto& x : only) {
std::string sy = Util::StringHelpers::trim(x);
if (sy.length() != 0) {
onlySet.insert(x);
}
logger::info("Only Generating: {}", x);
onlySet.insert(x);
}

auto& all = RE::TESDataHandler::GetSingleton()->GetFormArray<RE::TESWorldSpace>();
Expand Down

0 comments on commit ba2f09a

Please sign in to comment.