Skip to content

Commit

Permalink
Add a toString to LogPositionMarker.
Browse files Browse the repository at this point in the history
Just making it easier to read the position of the markers in the debuggger.
  • Loading branch information
chrisvest committed May 16, 2019
1 parent 7b3b265 commit e4cdff5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,10 @@ public long getByteOffset()
{
return byteOffset;
}

@Override
public String toString()
{
return "Mark:" + newPosition().toString();
}
}

0 comments on commit e4cdff5

Please sign in to comment.