-
Notifications
You must be signed in to change notification settings - Fork 276
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
add deug log #16820
add deug log #16820
Conversation
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Reviewer Guide 🔍
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨
|
bbc05b7
to
8ba7bc3
Compare
User description
What type of PR is this?
Which issue(s) this PR fixes:
issue #16812
What this PR does / why we need it:
add debug log
PR Type
Enhancement, Bug fix
Description
CheckPrintPrepareCompact
andPrintPrepareCompactDebugLog
toObjectEntry
for logging debug information related to compact operations.PrepareCompact
methods inaobject
andobject
to include debug logging.hasPrintedPrepareComapct
to track if the debug log has already been printed.Changes walkthrough 📝
object.go
Add debug logging for compact operations in ObjectEntry
pkg/vm/engine/tae/catalog/object.go
CheckPrintPrepareCompact
method to check if a compact operationshould be logged.
PrintPrepareCompactDebugLog
method to log debug information forcompact operations.
hasPrintedPrepareComapct
boolean to track if the debug loghas been printed.
aobj.go
Enhance PrepareCompact with debug logging in aobject
pkg/vm/engine/tae/tables/aobj.go
PrepareCompact
method to include debug logging for compactoperations.
CheckPrintPrepareCompact
andPrintPrepareCompactDebugLog
methods.obj.go
Enhance PrepareCompact with debug logging in object
pkg/vm/engine/tae/tables/obj.go
PrepareCompact
method to include debug logging for compactoperations.
CheckPrintPrepareCompact
andPrintPrepareCompactDebugLog
methods.