diff --git a/dali/base/dafdesc.cpp b/dali/base/dafdesc.cpp index 41ff97693de..4e47bcbe783 100644 --- a/dali/base/dafdesc.cpp +++ b/dali/base/dafdesc.cpp @@ -3625,6 +3625,7 @@ static void doInitializeStorageGroups(bool createPlanesFromGroups) void initializeStorageGroups(bool createPlanesFromGroups) { + DBGLOG("POC Build info - initializeStorageGroups called with createPlanesFromGroups=%s", boolToStr(createPlanesFromGroups)); auto updateFunc = [createPlanesFromGroups](const IPropertyTree *oldComponentConfiguration, const IPropertyTree *oldGlobalConfiguration) { PROGLOG("initializeStorageGroups update"); diff --git a/dali/dfu/dfuutil.cpp b/dali/dfu/dfuutil.cpp index 8f50be9a05e..40a0d237682 100644 --- a/dali/dfu/dfuutil.cpp +++ b/dali/dfu/dfuutil.cpp @@ -451,7 +451,7 @@ class CFileCloner void cloneSubFile(IPropertyTree *ftree,const char *destfilename, INode *srcdali, const char *srcCluster) // name already has prefix added { - DBGLOG("cloneSubFile %s", destfilename); + DBGLOG("cloneSubFile %s", nullText(destfilename)); Owned srcfdesc = deserializeFileDescriptorTree(ftree, NULL, 0); const char * kind = srcfdesc->queryProperties().queryProp("@kind"); @@ -484,6 +484,7 @@ class CFileCloner Owned plane = getDataStoragePlane(cluster1, false); if (plane) // I think it should always exist, even in bare-metal.., but guard against it not for now (assumes initializeStorageGroups has been called) { + DBGLOG("cloneSubFile: found plane for cluster '%s', dirPerPart=%s", cluster1.get(), boolToStr(plane->queryDirPerPart())); if (plane->queryDirPerPart()) dstfdesc->setFlags(FileDescriptorFlags::dirperpart); } @@ -860,6 +861,8 @@ class CFileCloner void cloneRoxieFile(const char *filename, const char *destfilename) { + DBGLOG("cloneRoxieFile %s --> %s", nullText(filename), nullText(destfilename)); + Linked srcdali = foreigndalinode; CDfsLogicalFileName srcLFN; srcLFN.set(filename);