1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #17372 from Snuffleupagus/fuzzing-VerbosityLevel-ERRORS

Limit the amount of console "spam" during fuzz tests (PR 17337 follow-up)
This commit is contained in:
Tim van der Meij 2023-12-09 13:57:23 +01:00 committed by GitHub
commit c908f2d55c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 36 additions and 5 deletions

View file

@ -13,7 +13,11 @@
* limitations under the License.
*/
import { getVerbosityLevel, setVerbosityLevel } from "./shared/util.js";
import {
getVerbosityLevel,
setVerbosityLevel,
VerbosityLevel,
} from "./shared/util.js";
import { Jbig2Image } from "./core/jbig2.js";
import { JpegImage } from "./core/jpg.js";
import { JpxImage } from "./core/jpx.js";
@ -31,4 +35,5 @@ export {
JpegImage,
JpxImage,
setVerbosityLevel,
VerbosityLevel,
};