From: Jakub Latusek Date: Mon, 24 Oct 2022 12:26:04 +0000 (+0200) Subject: Change log level from error to debug X-Git-Tag: accepted/tizen/unified/20221103.165737~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e97092a2e395717d138b326dadeb8db2eca5eba8;p=platform%2Fcore%2Fconnectivity%2Fbluetooth-frwk.git Change log level from error to debug This is a debug message which is not needed to be logged as an error. Change-Id: I52f95741b4dc1a2dce3bde8de371c9b5d63ba368 Signed-off-by: Jakub Latusek --- diff --git a/bt-oal/bluez_hal/src/bt-hal-utils.c b/bt-oal/bluez_hal/src/bt-hal-utils.c index 9a4753f..22dc6e2 100644 --- a/bt-oal/bluez_hal/src/bt-hal-utils.c +++ b/bt-oal/bluez_hal/src/bt-hal-utils.c @@ -59,7 +59,7 @@ const char *bt_uuid_t2str(const uint8_t *uuid, char *buf) snprintf(buf + i * 2 + shift, (MAX_UUID_STR_LEN -(i * 2 + shift)), "%02x", uuid[i]); } - ERR("uuid %s", buf); + DBG("uuid %s", buf); return buf; }