mirror of
https://github.com/status-im/ethereumj-personal.git
synced 2025-01-24 19:00:31 +00:00
reverted log labels back
This commit is contained in:
parent
2b03a1a38e
commit
d2b7866a63
@ -32,7 +32,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
|
||||
*/
|
||||
public class Block {
|
||||
|
||||
private static Logger logger = LoggerFactory.getLogger(Block.class);
|
||||
private static Logger logger = LoggerFactory.getLogger("block");
|
||||
|
||||
/* A scalar value equal to the mininum limit of gas expenditure per block */
|
||||
private static long MIN_GAS_LIMIT = 125000L;
|
||||
|
@ -52,7 +52,7 @@ import static org.ethereum.core.Denomination.SZABO;
|
||||
*/
|
||||
public class Blockchain {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(Blockchain.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger("blockchain");
|
||||
private static final Logger stateLogger = LoggerFactory.getLogger("state");
|
||||
|
||||
// to avoid using minGasPrice=0 from Genesis for the wallet
|
||||
|
@ -20,7 +20,7 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
public class EthereumImpl implements Ethereum {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(EthereumImpl.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger("facade");
|
||||
|
||||
public EthereumImpl() {}
|
||||
|
||||
|
@ -28,7 +28,7 @@ import static org.ethereum.net.Command.*;
|
||||
*/
|
||||
public class EthereumPeerTasterHandler extends ChannelInboundHandlerAdapter {
|
||||
|
||||
private final static Logger logger = LoggerFactory.getLogger(EthereumPeerTasterHandler.class);
|
||||
private final static Logger logger = LoggerFactory.getLogger("peerdiscovery");
|
||||
|
||||
private final static byte[] MAGIC_PREFIX = {(byte)0x22, (byte)0x40, (byte)0x08, (byte)0x91};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user