Skip to content

Commit

Permalink
libosdp: CP: Lower comeset reply log level to info
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Dec 19, 2023
1 parent f159818 commit e3877b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdp_cp.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ static int cp_decode_response(struct osdp_pd *pd, uint8_t *buf, int len)
temp32 |= buf[pos++] << 8;
temp32 |= buf[pos++] << 16;
temp32 |= buf[pos++] << 24;
LOG_WRN("COMSET responded with ID:%d Baud:%d", t1, temp32);
LOG_INF("COMSET responded with ID:%d Baud:%d", t1, temp32);
pd->address = t1;
pd->baud_rate = temp32;
ret = OSDP_CP_ERR_NONE;
Expand Down

0 comments on commit e3877b2

Please sign in to comment.