pankaj0509
pankaj0509
@jongpie Awesome to know that Thanks for your update.
@jongpie I implemented the same using Beta version however It is not working . I created one abc__c on LogEntryEvent__e and same custom field i.e abc__c on logEntry__c and i...
hi @jongpie thanks for your reply !!. I am using text field type in both LogEntryEvent__e and logEntry__c . For our scenario , We need to populate data in logEntry__c...
@jongpie Thanks, I am on it . Let me give u feedback
@jongpie I have installed nebula using below provided link and it is working as expected. Thanks a ton!! https://test.salesforce.com/packaging/installPackage.apexp?p0=04t5Y0000027L0EQAU just out of curiosity , when are you planning to merge...
Hi @jongpie Thanks for your response . Actually I am using below code. ```apex Logger.info(methodName) .setHttpResponseDetails(httpResponse) .setHttpRequestDetails(httpRequest) .setField(LogEntryEvent__e.Source_System__c, StringConstants.SALESFORCE_STRING) .setField(LogEntryEvent__e.Destination_System__c, httpRequest.getEndpoint()) .setField(LogEntryEvent__e.Log_Type__c, StringConstants.OUTBOUND_RECORD_TYPE) .setField(LogEntryEvent__e.Method_Name__c, methodName) .setField(LogEntryEvent__e.Total_Callout_Duration__c, miliSecInInteger); ``` You can...
@jongpie Do you mean we have to create following fields in logEntryEvent__e and logEntry__c object . HttpRequestHeaderKeys__c HttpRequestHeaders__c and then we have to overload setHttpRequestDetails(httpRequest, headersToLog). need to create overload...