|
@@ -622,7 +622,6 @@ static int m_sleep(struct sip_msg *msg, char *time, char *str2)
|
|
|
LM_ERR("cannot get time interval value\n");
|
|
|
return -1;
|
|
|
}
|
|
|
- LM_DBG("sleep %lu seconds\n", (unsigned long)s);
|
|
|
sleep((unsigned int)s);
|
|
|
return 1;
|
|
|
}
|
|
@@ -635,7 +634,6 @@ static int m_usleep(struct sip_msg *msg, char *time, char *str2)
|
|
|
LM_ERR("cannot get time interval value\n");
|
|
|
return -1;
|
|
|
}
|
|
|
- LM_DBG("sleep %lu microseconds\n", (unsigned long)time);
|
|
|
sleep_us((unsigned int)s);
|
|
|
return 1;
|
|
|
}
|