We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d83a910 commit 09278a7Copy full SHA for 09278a7
src/esp/metadata/managers/SceneDatasetAttributesManager.cpp
@@ -70,8 +70,10 @@ void SceneDatasetAttributesManager::setValsFromJSONDocInternal(
70
attributes::SceneDatasetAttributes::ptr dsAttribs,
71
const io::JsonGenericValue& jsonConfig) {
72
// check for diagnostics requests
73
- this->setDSDiagnostics(dsAttribs, jsonConfig);
74
-
+ bool dsSet = this->setDSDiagnostics(dsAttribs, jsonConfig);
+ ESP_VERY_VERBOSE(Mn::Debug::Flag::NoSpace)
75
+ << "Attempt to set dataset diagnostics was a "
76
+ << (dsSet ? "Success" : "Failure");
77
// dataset root directory to build paths from
78
std::string dsDir = dsAttribs->getFileDirectory();
79
// process stages
0 commit comments