Enhance output in Intern::makeForm to improve clarity of form creation

This commit is contained in:
whaffman 2026-03-27 19:55:11 +01:00
parent f916d5cb2f
commit 4bcc292d72

View File

@ -79,7 +79,8 @@ AForm *Intern::makeForm(const std::string &formName, const std::string &target)
{ {
if (formName == formTypeStrs[i]) if (formName == formTypeStrs[i])
{ {
std::cout << INTERN << "Intern creates " << formName << " form." << std::endl; std::cout << INTERN << "Intern creates " << formName << " form."
<< std::endl;
return formFactories[i](target); return formFactories[i](target);
} }
} }