Index: src/main/java/org/wso2/carbon/lb/endpoint/endpoint/TenantAwareLoadBalanceEndpoint.java
===================================================================
--- src/main/java/org/wso2/carbon/lb/endpoint/endpoint/TenantAwareLoadBalanceEndpoint.java	(revision 181790)
+++ src/main/java/org/wso2/carbon/lb/endpoint/endpoint/TenantAwareLoadBalanceEndpoint.java	(working copy)
@@ -296,7 +296,11 @@
         }
 
         TenantDynamicLoadBalanceFaultHandlerImpl faultHandler = new TenantDynamicLoadBalanceFaultHandlerImpl();
-        log.debug("************* Actual Host: "+actualHost +" ****** Target Host: "+targetHost);
+        
+        if (log.isDebugEnabled()) {
+            log.debug("Actual Host: " + actualHost + " - Target Host: " + targetHost);
+        }
+        
         faultHandler.setHost(actualHost != null ? actualHost : targetHost);
 
         if (sessionInformation != null && currentMember != null) {
@@ -325,7 +329,10 @@
 
                     actualHost = domainMapping.getActualHost();
                     
-                    log.debug("************* Actual Host: "+actualHost +" ****** Target Host: "+targetHost);
+                    if (log.isDebugEnabled()) {
+                        log.debug("Actual Host: " + actualHost + " - Target Host: " + targetHost);
+                    }
+                    
                     faultHandler.setHost(actualHost != null ? actualHost : targetHost);
 
                     if(containsPort){
@@ -428,7 +435,9 @@
         };
 
         public void setHost(String host) {
-            log.debug("Setting host name: "+host);
+            if (log.isDebugEnabled()) {
+                log.debug("Setting host name: "+host);
+            }
             this.host = host;
         }
 
