Skip to content

Commit

Permalink
Update of debugging traces.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Dec 6, 2023
1 parent fc7ff2d commit 06176ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class GarbageCollector(internal val environment: EnvironmentImpl) {
val loggables = log.getLoggableIterator(fileAddress)
while (loggables.hasNext()) {
val loggable = loggables.next()
if (loggable.address == 520806596608L) {
if (loggable.address == 520806663921L) {
println("Bad boy !!!")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,14 +268,14 @@ internal class PatriciaTreeMutable(
): Boolean {
var l = loggable
var minAddress = l.address
if (minAddress == 520806596608L) {
if (minAddress == 520806663921L) {
println("Bad boy !!!")
}

while (true) {
val type = l.type

if (l.address == 520806596608L) {
if (l.address == 520806663921L) {
println("Bad boy !!!")
}

Expand All @@ -299,7 +299,7 @@ internal class PatriciaTreeMutable(
}

val maxAddress = l.address
if (maxAddress == 520806596608L) {
if (maxAddress == 520806663921L) {
println("Bad boy !!!")
}

Expand Down

0 comments on commit 06176ce

Please sign in to comment.