diff --git a/res/res_pjsip.c b/res/res_pjsip.c
index 6deb701518324728ba97840a18a62daef22859a4..49defabd4be290d8cc806004053fe08ee950f8b0 100644
--- a/res/res_pjsip.c
+++ b/res/res_pjsip.c
@@ -3779,7 +3779,7 @@ static int create_out_of_dialog_request(const pjsip_method *method, struct ast_s
 			contact = ast_sip_location_retrieve_contact_from_aor_list(endpoint->aors);
 		}
 		if (!contact || ast_strlen_zero(contact->uri)) {
-			ast_log(LOG_ERROR, "Unable to retrieve contact for endpoint %s\n",
+			ast_log(LOG_WARNING, "Unable to retrieve contact for endpoint %s\n",
 					ast_sorcery_object_get_id(endpoint));
 			return -1;
 		}
diff --git a/res/res_pjsip_messaging.c b/res/res_pjsip_messaging.c
index f648ba56c554082424bfe53bca140e909e7b3da9..0e10a8f0474b7df7bd1c1a89e14759d829abee59 100644
--- a/res/res_pjsip_messaging.c
+++ b/res/res_pjsip_messaging.c
@@ -655,7 +655,7 @@ static int msg_send(void *data)
 	}
 
 	if (ast_sip_create_request("MESSAGE", NULL, endpoint, uri, NULL, &tdata)) {
-		ast_log(LOG_ERROR, "PJSIP MESSAGE - Could not create request\n");
+		ast_log(LOG_WARNING, "PJSIP MESSAGE - Could not create request\n");
 		return -1;
 	}