diff --git a/cpu/msp430-common/hwtimer_cpu.c b/cpu/msp430-common/hwtimer_cpu.c
index c1dedf6a802b3b04ff073957536b578ced3006ab..9996d8016d1463f065f047c5cf6bf8bebc3c10c2 100644
--- a/cpu/msp430-common/hwtimer_cpu.c
+++ b/cpu/msp430-common/hwtimer_cpu.c
@@ -60,7 +60,7 @@ static void timer_set_nostart(unsigned long value, short timer)
 
 static void timer_set(unsigned long value, short timer)
 {
-    DEBUG("Setting timer %u to %lu\n", timer, value);
+    DEBUG("Setting timer %u to %u overflows and %lu\n", timer, overflow_interrupt[timer], value);
     timer_set_nostart(value, timer);
     timer_enable_interrupt(timer);
 }