@itwin/core-backend 4.6.0-dev.19 → 4.6.0-dev.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/IModelDb.js +2 -2
- package/lib/cjs/IModelDb.js.map +1 -1
- package/package.json +12 -12
package/lib/cjs/IModelDb.js
CHANGED
|
@@ -1819,7 +1819,7 @@ exports.IModelDb = IModelDb;
|
|
|
1819
1819
|
UNION ALL
|
|
1820
1820
|
SELECT ECInstanceId, ECClassId FROM Bis.ElementUniqueAspect WHERE Element.Id = :elementId) OPTIONS USE_JS_PROP_NAMES DO_NOT_TRUNCATE_BLOB`, elementId, excludedClassFullNames);
|
|
1821
1821
|
if (allAspects.length === 0)
|
|
1822
|
-
core_bentley_1.Logger.
|
|
1822
|
+
core_bentley_1.Logger.logInfo(BackendLoggerCategory_1.BackendLoggerCategory.ECDb, `No aspects found for class ${aspectClassFullName} and element ${elementId}`);
|
|
1823
1823
|
return allAspects;
|
|
1824
1824
|
}
|
|
1825
1825
|
// Check if class is abstract
|
|
@@ -1855,7 +1855,7 @@ exports.IModelDb = IModelDb;
|
|
|
1855
1855
|
SELECT ECInstanceId, ECClassId FROM Bis.ElementUniqueAspect WHERE Element.Id = :elementId AND ECClassId IN (${classIdList})
|
|
1856
1856
|
) OPTIONS USE_JS_PROP_NAMES DO_NOT_TRUNCATE_BLOB`, elementId, excludedClassFullNames);
|
|
1857
1857
|
if (aspects.length === 0)
|
|
1858
|
-
core_bentley_1.Logger.
|
|
1858
|
+
core_bentley_1.Logger.logInfo(BackendLoggerCategory_1.BackendLoggerCategory.ECDb, `No aspects found for class ${aspectClassFullName} and element ${elementId}`);
|
|
1859
1859
|
return aspects;
|
|
1860
1860
|
}
|
|
1861
1861
|
/** Insert a new ElementAspect into the iModel.
|