Commit 49daaa06 authored by Aurelio Colosimo's avatar Aurelio Colosimo

trivial: reduce log verbosity

parent 691fe425
......@@ -19,7 +19,7 @@ int pp_state_machine(struct pp_instance *ppi, uint8_t *packet, int plen)
int state, err;
if (plen > 0)
PP_PRINTF("RECV %02d %d.%d %s\n", plen,
PP_VPRINTF("RECV %02d %d.%d %s\n", plen,
(int)ppi->last_rcv_time.seconds,
(int)ppi->last_rcv_time.nanoseconds,
pp_msg_names[packet[0] & 0x0f]);
......
......@@ -18,7 +18,7 @@
pp_msg_names[PPM_##x], PPM_##x);\
return -1;\
}\
PP_PRINTF("SENT %02d %d.%d %s \n", w,\
PP_VPRINTF("SENT %02d %d.%d %s \n", w,\
ppi->last_snt_time.seconds,\
ppi->last_snt_time.nanoseconds,pp_msg_names[PPM_##x]);\
ppi->sent_seq_id[PPM_## x]++;\
......
......@@ -123,7 +123,7 @@ int pp_slave(struct pp_instance *ppi, unsigned char *pkt, int plen)
hdr->logMessageInterval;
} else {
PP_VPRINTF("pp_slave : "
PP_PRINTF("pp_slave : "
"Delay Resp doesn't match Delay Req\n");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment