mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-26 12:35:25 +00:00
att_db/att_server: log_info -> log_debug to have no debug output for le streamer
This commit is contained in:
parent
785879c691
commit
f50ef7dd1f
@ -279,7 +279,7 @@ static inline uint16_t setup_error_invalid_offset(uint8_t * response_buffer, uin
|
||||
static uint8_t att_validate_security(att_connection_t * att_connection, att_iterator_t * it){
|
||||
int required_encryption_size = it->flags >> 12;
|
||||
if (required_encryption_size) required_encryption_size++; // store -1 to fit into 4 bit
|
||||
log_info("att_validate_security. flags 0x%04x - req enc size %u, authorized %u, authenticated %u, encryption_key_size %u",
|
||||
log_debug("att_validate_security. flags 0x%04x - req enc size %u, authorized %u, authenticated %u, encryption_key_size %u",
|
||||
it->flags, required_encryption_size, att_connection->authorized, att_connection->authenticated, att_connection->encryption_key_size);
|
||||
if ((it->flags & ATT_PROPERTY_AUTHENTICATION_REQUIRED) && att_connection->authenticated == 0) {
|
||||
return ATT_ERROR_INSUFFICIENT_AUTHENTICATION;
|
||||
|
@ -486,7 +486,7 @@ static void att_packet_handler(uint8_t packet_type, uint16_t handle, uint8_t *pa
|
||||
break;
|
||||
|
||||
case ATT_DATA_PACKET:
|
||||
log_info("ATT Packet, handle 0x%04x", handle);
|
||||
log_debug("ATT Packet, handle 0x%04x", handle);
|
||||
att_server = att_server_for_handle(handle);
|
||||
if (!att_server) break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user