-
-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added 'transaction entry number' for log entry #127
Conversation
I was originally going to complete #120 with this PR, but I'm going to skip that field for now - it has a field length of 1,000, so it'd have to be a long textarea field, which doesn't seem ideal. |
… feature/log-entry-number
Codecov Report
@@ Coverage Diff @@
## main #127 +/- ##
==========================================
+ Coverage 85.38% 85.40% +0.02%
==========================================
Files 13 13
Lines 2087 2090 +3
==========================================
+ Hits 1782 1785 +3
Misses 305 305
Continue to review full report at Codecov.
|
…eature/log-entry-number
…eature/log-entry-number # Conflicts: # nebula-logger/main/logger-engine/classes/Logger.cls
This new field shows the sequential number of this log entry within the transaction (e.g., the first log entry has 'transaction entry number' == 1, the second entry has number == 2, etc.).
I've thought about adding this field ever since dealing with #85 - it's another way to sort the list of log entries, and also helps with troubleshooting to verify that all expected log entries are created.