reverted log labels back

This commit is contained in:
Gianluigi 2014-08-27 11:04:10 +02:00
parent 2b03a1a38e
commit d2b7866a63
4 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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

View File

@ -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() {}

View File

@ -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};