Fix log class name in ArrayByteBufferPool

Signed-off-by: Sebastian Lövdahl <slovdahl@hibox.fi>
This commit is contained in:
Sebastian Lövdahl 2022-02-02 10:42:38 +02:00
parent 09f489922c
commit dcaf3f2d78
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ import org.eclipse.jetty.util.log.Logger;
@ManagedObject
public class ArrayByteBufferPool extends AbstractByteBufferPool implements Dumpable
{
private static final Logger LOG = Log.getLogger(MappedByteBufferPool.class);
private static final Logger LOG = Log.getLogger(ArrayByteBufferPool.class);
private final int _maxCapacity;
private final int _minCapacity;