changes to LOG_DEBUG tags

changed logger level to info for now in the UDP_broadcast header file ,  debug not needed

fixed some tags
This commit is contained in:
joran2738
2023-11-07 12:37:21 +01:00
parent 00678a9382
commit 4b188b1ff0
3 changed files with 12 additions and 11 deletions

View File

@@ -111,16 +111,16 @@ int main(void)
MX_QUADSPI_Init();
/* USER CODE BEGIN 2 */
owner_details_t owner;
LOG_DEBUG("main1","\nhelloworld");
LOG_DEBUG("main2","%s",get_owner_details_reply(&owner));
LOG_DEBUG(TAG,"\nhelloworld");
LOG_DEBUG(TAG,"%s",get_owner_details_reply(&owner));
if(!set_owner_details(&owner, "joran", "vn")){
LOG_DEBUG("main3","error");;
LOG_DEBUG(TAG,"error");;
}
LOG_DEBUG("main4","%s",get_owner_details_reply(&owner));
LOG_DEBUG(TAG,"%s",get_owner_details_reply(&owner));
if(!set_owner_details(&owner, "joran", "Van Nieuwenhoven")){
LOG_DEBUG("main5","error");
LOG_DEBUG(TAG,"error");
}
LOG_DEBUG("main6","%s",get_owner_details_reply(&owner));
LOG_DEBUG(TAG,"%s",get_owner_details_reply(&owner));
/* USER CODE END 2 */
/* Infinite loop */