Skip to content

Commit 46f00c6

Browse files
committed
Add debug loggin g
1 parent 0b40d3c commit 46f00c6

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Source/PluginProcessor.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ bool PluginProcessor::initialiseFilesystem()
380380

381381
bool extractionCompleted = true;
382382

383+
std::cout << "Extracting resources" << std::endl;
383384
// Check if the abstractions directory exists, if not, unzip it from binaryData
384385
if (!versionDataDir.exists()) {
385386
extractionCompleted = false;
@@ -425,6 +426,8 @@ bool PluginProcessor::initialiseFilesystem()
425426
}
426427
}
427428
}
429+
std::cout << "Done extracting" << std::endl;
430+
428431
if (!dekenDir.exists()) {
429432
dekenDir.createDirectory();
430433
}
@@ -539,6 +542,8 @@ bool PluginProcessor::initialiseFilesystem()
539542
createLinkWithRetry(homeDir.getChildFile("Extra"), versionDataDir.getChildFile("Extra"));
540543
#endif
541544

545+
std::cout << "Setup done" << std::endl;
546+
542547
initMutex.deleteFile();
543548
return extractionCompleted;
544549
}

0 commit comments

Comments
 (0)