Browse Source

core: log message about slow timer printed now as warning

Daniel-Constantin Mierla 13 years ago
parent
commit
566c30dd38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      timer.c

+ 1 - 1
timer.c

@@ -970,7 +970,7 @@ static void timer_handler()
 		if ((slow_idx_t)(*t_idx-*s_idx) < (SLOW_LISTS_NO-1U))
 			(*t_idx)++;
 		else{
-			LOG(L_ERR, "ERROR: slow timer too slow: overflow (%d - %d = %d)\n",
+			LOG(L_WARN, "slow timer too slow: overflow (%d - %d = %d)\n",
 					*t_idx, *s_idx, *t_idx-*s_idx);
 			/* trying to continue */
 		}