am 144d72d3: Remove some logs in case of abort() (DO NOT MERGE).

* commit '144d72d32ae420d5f4b25897a43210f56e287637':
  Remove some logs in case of abort() (DO NOT MERGE).
diff --git a/Linux_x86/phOsalNfc.c b/Linux_x86/phOsalNfc.c
index 83b4e6e..a158415 100644
--- a/Linux_x86/phOsalNfc.c
+++ b/Linux_x86/phOsalNfc.c
@@ -142,14 +142,12 @@
  */
 void phOsalNfc_RaiseException(phOsalNfc_ExceptionType_t eExceptionType, uint16_t reason)
 {
-    ALOGD("phOsalNfc_RaiseException() called");
-
     if(eExceptionType == phOsalNfc_e_UnrecovFirmwareErr)
     {
-        ALOGE("HCI Timeout - Exception raised");
         phLibNfc_Mgt_Recovery();
-        ALOGE("Force restart of NFC Service");
         abort();
+    } else {
+        ALOGD("phOsalNfc_RaiseException() called");
     }
 }