You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I m playing around with this wonderful loggin tool, however I m trying to work with these things with Industries which uses Ominiscripts and Integration procedures, I;ve installed an unmanaged package.
I cannot see the OS or IP's that are currently capturing the whole JSON log in the messages, I've seen your #785 thats still not working with the latest release
Here is my full JSON response { "omniscriptId": "0jNUE000000MYMP2A4", "language": "English", "type": "Nebula", "subType": "Logs", "sId": "0jNUE000000MYMP2A4", "runMode": "preview", "theme": "lightning", "LanguageCode": "en_US", "userProfile": "System Administrator", "timeStamp": "2025-12-11T18:35:02.952Z", "userTimeZoneName": "Europe/London", "userTimeZone": "0", "userCurrencyCode": "GBP", "userName": "vineeth.n@.com.uk", "userId": "005Tv0000076bLpIAI", "omniProcessId": "0jNUE000000MYMP2A4", "localTimeZoneName": "Europe/London", "Account": [ { "Name": "Vineeth", "Id": "001UE00000cBGgIYAW" } ], "requestId": "SLB:7228259aa8df1ded5c3deb02ca249927", "parentLogTransactionId": null, "transactionId": "e0c53caa-a8f4-40c3-a0aa-3e137d2f6349", "isSuccess": true }
Cant see the parentLogTransactionId is returned either
And same for Integration procedure
It would be really great to see to have this fix, and the version that I've installed is 4.16.5,
Note - Im modifying the existing class to support this, I ll post the changes once its done :)
I've added following changes
for (String inputName : originalInput.keySet()) {
// Skip reserved / meta keys
if (reservedKeys.contains(inputName)) {
continue;
}
Object inputValue = originalInput.get(inputName);
if (inputValue == null) {
continue;
}
// Keep *both* objects and arrays
if (inputValue instanceof Map<String, Object> ||
inputValue instanceof List<Object>) {
cleanedOmniStudioInputs.put(inputName, inputValue);
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I m playing around with this wonderful loggin tool, however I m trying to work with these things with Industries which uses Ominiscripts and Integration procedures, I;ve installed an unmanaged package.
I cannot see the OS or IP's that are currently capturing the whole JSON log in the messages, I've seen your #785 thats still not working with the latest release
Here is my full JSON response
{ "omniscriptId": "0jNUE000000MYMP2A4", "language": "English", "type": "Nebula", "subType": "Logs", "sId": "0jNUE000000MYMP2A4", "runMode": "preview", "theme": "lightning", "LanguageCode": "en_US", "userProfile": "System Administrator", "timeStamp": "2025-12-11T18:35:02.952Z", "userTimeZoneName": "Europe/London", "userTimeZone": "0", "userCurrencyCode": "GBP", "userName": "vineeth.n@.com.uk", "userId": "005Tv0000076bLpIAI", "omniProcessId": "0jNUE000000MYMP2A4", "localTimeZoneName": "Europe/London", "Account": [ { "Name": "Vineeth", "Id": "001UE00000cBGgIYAW" } ], "requestId": "SLB:7228259aa8df1ded5c3deb02ca249927", "parentLogTransactionId": null, "transactionId": "e0c53caa-a8f4-40c3-a0aa-3e137d2f6349", "isSuccess": true }Cant see the parentLogTransactionId is returned either



And same for Integration procedure
It would be really great to see to have this fix, and the version that I've installed is 4.16.5,
Note - Im modifying the existing class to support this, I ll post the changes once its done :)
I've added following changes
Beta Was this translation helpful? Give feedback.
All reactions