File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -578,7 +578,7 @@ class BundleBuilder {
578
578
}
579
579
} else {
580
580
const sourceMapFileCandidate = resourcePath . slice ( "/resources/" . length ) + ".map" ;
581
- log . verbose ( `Could not find a sourceMappingURL reference in content of module ${ moduleName } . ` +
581
+ log . silly ( `Could not find a sourceMappingURL reference in content of module ${ moduleName } . ` +
582
582
`Attempting to find a source map resource based on the module's path: ${ sourceMapFileCandidate } ` ) ;
583
583
try {
584
584
const sourceMapResource = await this . pool . findResource ( sourceMapFileCandidate ) ;
@@ -587,7 +587,7 @@ class BundleBuilder {
587
587
}
588
588
} catch ( e ) {
589
589
// No input source map
590
- log . verbose ( `Could not find a source map for module ${ moduleName } : ${ e . message } ` ) ;
590
+ log . silly ( `Could not find a source map for module ${ moduleName } : ${ e . message } ` ) ;
591
591
}
592
592
}
593
593
Original file line number Diff line number Diff line change @@ -680,9 +680,11 @@ ${SOURCE_MAPPING_URL}=bootstrap.js.map
680
680
} ) ;
681
681
682
682
test . serial ( "integration: createBundle with bundleInfo" , async ( t ) => {
683
+ const sillyLogStub = sinon . stub ( ) ;
683
684
const verboseLogStub = sinon . stub ( ) ;
684
685
const warnLogStub = sinon . stub ( ) ;
685
686
const myLoggerInstance = {
687
+ silly : sillyLogStub ,
686
688
verbose : verboseLogStub ,
687
689
warn : warnLogStub
688
690
} ;
You can’t perform that action at this time.
0 commit comments