diff --git a/ADASMELIAE.py b/ADASMELIAE.py
index 707b5da526a71af1566c4684bbdbe41cd5bd536b..110954d3344c8fa061138e197b3e02ff900088bf 100755
--- a/ADASMELIAE.py
+++ b/ADASMELIAE.py
@@ -191,6 +191,9 @@ if __name__ == "__main__":
     # Classifying warning status for the model
     # temperature < 15     --> 2 (Green)
     # temperature >= 15    --> 4 (Red)
+    logging.info(
+        f"Calculate warning status by checking if {tm_max} is below or above {THRESHOLD}"
+    )
     run_command(
         command=f'cdo -s -aexpr,"WARNING_STATUS = {tm_max} < {THRESHOLD} ? 2 : 4" {max_temp_in_period_file} {unmasked_result_file}',
     )