diff --git a/src/c2pa/lib.py b/src/c2pa/lib.py index f0382874..186c8d3a 100644 --- a/src/c2pa/lib.py +++ b/src/c2pa/lib.py @@ -16,13 +16,9 @@ # Debug flag for library loading DEBUG_LIBRARY_LOADING = False -# Configure logging -logging.basicConfig( - level=logging.INFO, - format='%(asctime)s - %(levelname)s - %(message)s', - force=True # Force configuration even if already configured -) -logger = logging.getLogger(__name__) +# Create a module-specific logger with NullHandler to avoid interfering with global configuration +logger = logging.getLogger("c2pa") +logger.addHandler(logging.NullHandler()) class CPUArchitecture(Enum): diff --git a/tests/fixtures/files-for-reading-tests/C_with_CAWG_data.jpg b/tests/fixtures/files-for-reading-tests/C_with_CAWG_data.jpg index a397bc9a..dd93c44d 100644 Binary files a/tests/fixtures/files-for-reading-tests/C_with_CAWG_data.jpg and b/tests/fixtures/files-for-reading-tests/C_with_CAWG_data.jpg differ