diff --git a/bob/ip/binseg/script/analyze.py b/bob/ip/binseg/script/analyze.py
index 4ca900d94d096dd21fda106a325db4d64344e0e8..92e7f99678f43466f285a419906d0fda251d4eaa 100644
--- a/bob/ip/binseg/script/analyze.py
+++ b/bob/ip/binseg/script/analyze.py
@@ -275,7 +275,7 @@ def analyze(
                         f"(no equivalent `dataset[{k}]`)")
                 continue
             if not dataset[k].all_keys_match(v):
-                logger.info(f"Skipping second-annotator '{k}' " \
+                logger.warning(f"Skipping second-annotator '{k}' " \
                         f"(keys do not match `dataset[{k}]`?)")
                 continue
             candidate = os.path.join(analysis_folder, "second-annotator",
diff --git a/bob/ip/binseg/script/evaluate.py b/bob/ip/binseg/script/evaluate.py
index be3d8bf2a2edc7be425707b41e6fcdc370fdeea9..4a8a0c2af913453b83882cd2c5d38538caa27e13 100644
--- a/bob/ip/binseg/script/evaluate.py
+++ b/bob/ip/binseg/script/evaluate.py
@@ -190,7 +190,7 @@ def evaluate(
         second = second_annotator.get(k)
         if second is not None:
             if not second.all_keys_match(v):
-                logger.warn(f"Key mismatch between `dataset[{k}]` and " \
+                logger.warning(f"Key mismatch between `dataset[{k}]` and " \
                         f"`second_annotator[{k}]` - skipping " \
                         f"second-annotator comparisons for {k} subset")
             else: