-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setRecord method to LogEntryEventBuilder for handling Set of Ids …
…and List of Ids (#792)
- Loading branch information
1 parent
e58b02f
commit 1b437ce
Showing
10 changed files
with
131 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
nebula-logger/extra-tests/classes/name-shadowing/System/Iterable.cls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
//------------------------------------------------------------------------------------------------// | ||
// This file is part of the Nebula Logger project, released under the MIT License. // | ||
// See LICENSE file or go to https://github.com/jongpie/NebulaLogger for full license details. // | ||
//------------------------------------------------------------------------------------------------// | ||
|
||
// This class intentionally does nothing - it's here to ensure that any references | ||
// in Nebula Logger's codebase use `System.Iterable` instead of just `Iterable` | ||
@SuppressWarnings('PMD.ApexDoc, PMD.EmptyStatementBlock') | ||
public without sharing class Iterable { | ||
} |
5 changes: 5 additions & 0 deletions
5
nebula-logger/extra-tests/classes/name-shadowing/System/Iterable.cls-meta.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>61.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ | |
"path": "./nebula-logger/core", | ||
"definitionFile": "./config/scratch-orgs/base-scratch-def.json", | ||
"scopeProfiles": true, | ||
"versionNumber": "4.14.17.NEXT", | ||
"versionName": "Improved JavaScript Console Output", | ||
"versionDescription": "Added more details to the component log entry JSON that's printed using console statements. The stringified object now includes more details, such as the exception, tags, and scenario.", | ||
"versionNumber": "4.14.18.NEXT", | ||
"versionName": "Added setRecord() Overload for List<Id> and Set<Id> Parameters", | ||
"versionDescription": "Added a new overload setRecord(System.Iterable<Id> recordsIds) in LogEntryEventBuilder to make it easy to log List<Id> and Set<Id>.", | ||
"releaseNotesUrl": "https://github.com/jongpie/NebulaLogger/releases", | ||
"unpackagedMetadata": { | ||
"path": "./nebula-logger/extra-tests" | ||
|
@@ -202,6 +202,7 @@ | |
"Nebula Logger - [email protected]": "04t5Y0000015obxQAA", | ||
"Nebula Logger - [email protected]": "04t5Y0000015ocHQAQ", | ||
"Nebula Logger - [email protected]": "04t5Y0000015ocRQAQ", | ||
"Nebula Logger - [email protected]()-overload-for-list<id>-and-set<id>-parameters": "04t5Y0000015ocbQAA", | ||
"Nebula Logger - Core Plugin - Async Failure Additions": "0Ho5Y000000blO4SAI", | ||
"Nebula Logger - Core Plugin - Async Failure [email protected]": "04t5Y0000015lhiQAA", | ||
"Nebula Logger - Core Plugin - Async Failure [email protected]": "04t5Y0000015lhsQAA", | ||
|