bulltrackers-module 1.0.236 → 1.0.237
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.
|
@@ -84,6 +84,12 @@ function getDependencySet(endpoints, adjacencyList) {
|
|
|
84
84
|
function buildManifest(productLinesToRun = [], calculations) {
|
|
85
85
|
log.divider('Building Dynamic Manifest');
|
|
86
86
|
|
|
87
|
+
// [LOG VERIFICATION] Log the Input Request
|
|
88
|
+
const requestedLog = (!productLinesToRun || productLinesToRun.length === 0)
|
|
89
|
+
? "ALL (Wildcard/Empty)"
|
|
90
|
+
: productLinesToRun.join(', ');
|
|
91
|
+
log.info(`[ManifestBuilder] 📥 Request received for: [${requestedLog}]`);
|
|
92
|
+
|
|
87
93
|
const manifestMap = new Map();
|
|
88
94
|
const adjacency = new Map();
|
|
89
95
|
const reverseAdjacency = new Map();
|
|
@@ -181,6 +187,17 @@ function buildManifest(productLinesToRun = [], calculations) {
|
|
|
181
187
|
const requiredCalcs = getDependencySet(productLineEndpoints, adjacency);
|
|
182
188
|
log.info(`Filtered down to ${requiredCalcs.size} active calculations.`);
|
|
183
189
|
|
|
190
|
+
// [LOG VERIFICATION] Final Proof of Active Lines
|
|
191
|
+
const activePackages = new Set();
|
|
192
|
+
requiredCalcs.forEach(name => {
|
|
193
|
+
const entry = manifestMap.get(name);
|
|
194
|
+
if (entry) activePackages.add(entry.sourcePackage);
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
const activeList = Array.from(activePackages).sort().join(', ');
|
|
198
|
+
log.info(`[ManifestBuilder] ✅ FINAL ACTIVE PRODUCT LINES: [${activeList}]`);
|
|
199
|
+
log.info(`[ManifestBuilder] Total Active Calculations: ${requiredCalcs.size}`);
|
|
200
|
+
|
|
184
201
|
const filteredManifestMap = new Map();
|
|
185
202
|
const filteredInDegree = new Map();
|
|
186
203
|
const filteredReverseAdjacency = new Map();
|