diff --git a/apps/cli/executables/pexable/productfetcher/productfetcher/locations.py b/apps/cli/executables/pexable/productfetcher/productfetcher/locations.py
index de1176f6ccddb343ece3c21532ebe27a414caf74..609d901f75bb0b52bc2d9f283e7773330ceca230 100644
--- a/apps/cli/executables/pexable/productfetcher/productfetcher/locations.py
+++ b/apps/cli/executables/pexable/productfetcher/productfetcher/locations.py
@@ -214,9 +214,7 @@ class NgasFile(LocatedFile):
 
     @property
     def is_image_ancillary(self) -> bool:
-        # removing weblog from image ancillaries until processing date determination is sorted
-        # return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
-        return self.relative_path.endswith(".fits")
+        return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
 
     def __str__(self):
         return f"NGAS {self.ngas_file_id} from {self.server} -> {self.subdirectory}/{self.relative_path}"
@@ -286,9 +284,7 @@ class OracleXml(LocatedFile):
 
     @property
     def is_image_ancillary(self) -> bool:
-        # removing weblog from image ancillaries until processing date determination is sorted
-        # return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
-        return self.relative_path.endswith(".fits")
+        return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
 
     def __str__(self):
         return f"ALMA {self.archive_uid} @ {self.table} -> {self.subdirectory}/{self.relative_path}"