Clean up missing directory behavior

This commit is contained in:
Chris Hennes
2021-08-24 11:49:07 -05:00
parent 2f7bb5c270
commit 01ba4030ff
2 changed files with 5 additions and 1 deletions

View File

@@ -240,7 +240,6 @@ void copyTemplateParameters(Base::Reference<ParameterGrp> templateGroup, const s
auto boolMap = templateGroup->GetBoolMap();
for (const auto& kv : boolMap) {
auto currentValue = userParameterHandle->GetBool(kv.first.c_str(), kv.second);
Base::Console().Message("Parameter %s = %d\n", kv.first.c_str(), currentValue);
outputGroup->SetBool(kv.first.c_str(), currentValue);
}