BuildStepList: Report list name when failing to restore a step

Change-Id: Ib0b3148229ddfeafb3e83fe677d82ec852352f45
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2013-02-15 13:08:50 +01:00
parent d49b93807b
commit 873838096f

View File

@@ -158,7 +158,7 @@ bool BuildStepList::fromMap(const QVariantMap &map)
}
IBuildStepFactory *factory = findRestoreFactory(this, bsData);
if (!factory) {
qWarning() << "No factory for step" << i << "found (continuing).";
qWarning() << "No factory for step" << i << "in list" << displayName() << "found (continuing).";
continue;
}
BuildStep *bs(factory->restore(this, bsData));