gprs_ns2_vc_fsm: remove debug line of the alive_timer

The log line sneaked in when fixing the alive ms

Fixes: ab0e8646c4 ("gprs_ns2_vc_fsm: use CLOCK_MONOTONIC for alive elapsed timer")
Change-Id: Iffe367b240f47c39232bbc26991c19752a1c75ad
This commit is contained in:
Alexander Couzens 2021-02-15 03:44:32 +01:00
parent 288f9b2486
commit f46ebcd3ae
1 changed files with 0 additions and 2 deletions

View File

@ -173,8 +173,6 @@ static int alive_timer_elapsed_ms(struct gprs_ns2_vc_priv *priv)
return 0;
timespecsub(&now, &priv->alive.timer_started, &elapsed);
LOGNSVC(priv->nsvc, LOGL_ERROR, "elapsed: %ld, now: %ld, saved: %ld.\n",
elapsed.tv_sec, now.tv_sec, priv->alive.timer_started.tv_sec);
return elapsed.tv_sec * 1000 + (elapsed.tv_nsec / 1000000);
}