diff --git a/slope-evaluator/app/main.py b/slope-evaluator/app/main.py
index 8b9dfa194506abc234959b738be97180089b6ec2..5995a1175f781c4eb51ab3d3083a665fbc02d6fd 100644
--- a/slope-evaluator/app/main.py
+++ b/slope-evaluator/app/main.py
@@ -30,7 +30,7 @@ def execute(results, threshold, warmup):
 
     df = pd.DataFrame(d)
 
-    logger.info("Calculating trend slope for data frame:\n %s", df)
+    logger.info("Calculating trend slope with warmup of %s seconds for data frame:\n %s", warmup, df)
     try:
         trend_slope = trend_slope_computer.compute(df, warmup)
     except Exception as e: