mirror of https://github.com/webpack/webpack.git
Remove temporary logging
This commit is contained in:
parent
9ea8630cde
commit
c8b3ed701e
|
@ -136,9 +136,6 @@ class OccurrenceModuleIdsPlugin {
|
||||||
if (prioritiseInitial) {
|
if (prioritiseInitial) {
|
||||||
const aEntryOccurs = occursInInitialChunksMap.get(a);
|
const aEntryOccurs = occursInInitialChunksMap.get(a);
|
||||||
const bEntryOccurs = occursInInitialChunksMap.get(b);
|
const bEntryOccurs = occursInInitialChunksMap.get(b);
|
||||||
if (Number.isNaN(aEntryOccurs) || Number.isNaN(bEntryOccurs)) {
|
|
||||||
console.log("SCOTT: found occurrence");
|
|
||||||
}
|
|
||||||
if (aEntryOccurs > bEntryOccurs) return -1;
|
if (aEntryOccurs > bEntryOccurs) return -1;
|
||||||
if (aEntryOccurs < bEntryOccurs) return 1;
|
if (aEntryOccurs < bEntryOccurs) return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue