Disable detail aid routing log

Test: Route aid log is disabled
Change-Id: I49dcbf9428ad7a72a46b784e1059d4c03a8397f6
diff --git a/src/com/android/nfc/cardemulation/AidRoutingManager.java b/src/com/android/nfc/cardemulation/AidRoutingManager.java
index c7d6edd..b04455b 100644
--- a/src/com/android/nfc/cardemulation/AidRoutingManager.java
+++ b/src/com/android/nfc/cardemulation/AidRoutingManager.java
@@ -367,7 +367,7 @@
                 int route = aidEntry.getValue().route;
                 int aidType = aidEntry.getValue().aidInfo;
                 String aid = aidEntry.getKey();
-                Log.d (TAG, "commit aid:"+aid+"route:"+route+"aidtype:"+aidType);
+                if (DBG) Log.d (TAG, "commit aid:"+aid+"route:"+route+"aidtype:"+aidType);
 
                 NfcService.getInstance().routeAids(aid, route, aidType);
             }