diff --git a/GAJavaScriptTracker/GAJSWebViewEngine.m b/GAJavaScriptTracker/GAJSWebViewEngine.m index 55a38de..0136bb3 100755 --- a/GAJavaScriptTracker/GAJSWebViewEngine.m +++ b/GAJavaScriptTracker/GAJSWebViewEngine.m @@ -123,7 +123,7 @@ - (void)sendOffBatchedJS { if(_webviewLoaded) { for(id aJSString in _webViewPendingScripts) { //run it - NSLog(@"[JSC] Evaluate JS: %@ %@ %@", aJSString, _webView.customUserAgent, _webView.applicationNameForUserAgent); + ELog(@"[JSC] Evaluate JS: %@ %@ %@", aJSString, _webView.customUserAgent, _webView.applicationNameForUserAgent); NSString *result = [_webView stringByEvaluatingJavaScriptFromString:aJSString]; if (!result) { ELog(@"[JSC] No result returned");