浏览代码

core: log message about slow timer printed now as warning

Daniel-Constantin Mierla 13 年之前
父节点
当前提交
566c30dd38
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 */
 		}