diff --git a/src/shared/gatt-client.c b/src/shared/gatt-client.c
index 1285c37..d61668d 100644
--- a/src/shared/gatt-client.c
+++ b/src/shared/gatt-client.c
discovery_req_clear(client);
if (!success) {
- util_debug(client->debug_callback, client->debug_data,
- "Primary service discovery failed."
- " ATT ECODE: 0x%02x", att_ecode);
/* Reset error in case of not found */
switch (att_ecode) {
case BT_ATT_ERROR_ATTRIBUTE_NOT_FOUND:
att_ecode = 0;
goto secondary;
default:
+ util_debug(client->debug_callback, client->debug_data,
+ "Primary service discovery failed."
+ " ATT ECODE: 0x%02x", att_ecode);
goto done;
}
}