Browse Source

timer_funcs.h: logging: convert LOG to LM_*

Ovidiu Sas 11 years ago
parent
commit
2c9d2bf4d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      timer_funcs.h

+ 1 - 1
timer_funcs.h

@@ -116,7 +116,7 @@ static inline int _timer_dist_tl(struct timer_ln* tl, ticks_t delta)
 {
 	if (delta<H0_ENTRIES){
 		if (delta==0){
-			LOG(L_WARN, "WARNING: timer: add_timeout: 0 expire timer added\n");
+			LM_WARN("0 expire timer added\n");
 			_timer_add_list(&timer_lst->expired, tl);
 		}else{
 			_timer_add_list( &timer_lst->h0[tl->expire & H0_MASK], tl);