Skip to content

Commit

Permalink
Only print number of commands in toString() of PhysicalTransactionRep…
Browse files Browse the repository at this point in the history
…resentation
  • Loading branch information
martinfurmanski committed Mar 8, 2019
1 parent 2ffd6c2 commit 53f28b2
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,7 @@ public String toString()
builder.append( "timeCommitted:" ).append( timeCommitted ).append( ',' );
builder.append( "lockSession:" ).append( lockSessionIdentifier ).append( ',' );
builder.append( "additionalHeader:" ).append( Arrays.toString( additionalHeader ) );
for ( StorageCommand command : commands )
{
builder.append( '\n' ).append( command );
}
builder.append( "commands.length:" ).append( commands.size() );
return builder.toString();
}

Expand Down

0 comments on commit 53f28b2

Please sign in to comment.