mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 20:35:17 +02:00
Log baker errors
This commit is contained in:
parent
b1bc899121
commit
3aee6db1e8
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ void BakeAssetTask::run() {
|
||||||
loop.exec();
|
loop.exec();
|
||||||
|
|
||||||
if (baker->hasErrors()) {
|
if (baker->hasErrors()) {
|
||||||
qDebug() << "Failed to bake: " << _assetHash << _assetPath;
|
qDebug() << "Failed to bake: " << _assetHash << _assetPath << baker->getErrors();
|
||||||
} else {
|
} else {
|
||||||
auto vectorOutputFiles = QVector<QString>::fromStdVector(baker->getOutputFiles());
|
auto vectorOutputFiles = QVector<QString>::fromStdVector(baker->getOutputFiles());
|
||||||
qDebug() << "Finished baking: " << _assetHash << _assetPath << vectorOutputFiles;
|
qDebug() << "Finished baking: " << _assetHash << _assetPath << vectorOutputFiles;
|
||||||
|
|
Loading…
Reference in a new issue