Skip to content

Commit

Permalink
Add scale to exception message to help debug netty/netty#8916
Browse files Browse the repository at this point in the history
  • Loading branch information
johnou committed Mar 6, 2019
1 parent 23432e5 commit 81f135f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ else if (8 == scale)
}
else
{
throw new IllegalStateException("Unknown pointer size");
throw new IllegalStateException("Unknown pointer size: " + scale);
}
REF_ARRAY_BASE = UnsafeAccess.UNSAFE.arrayBaseOffset(Object[].class);
}
Expand Down

0 comments on commit 81f135f

Please sign in to comment.