ether-camp / ethereum-harmony

DEPRECATED! Ethereum Independent Peer
GNU General Public License v3.0
253 stars 89 forks source link

The console cannot see the log output #107

Open JasperXgwang opened 6 years ago

JasperXgwang commented 6 years ago
@Slf4j(topic = "WalletController")
public class WalletController {

    @Autowired
    WalletService walletService;

    @MessageMapping("/getWalletInfo")
    public WalletInfoDTO getWalletInfo() {
        log.info("exec getWalletInfo");
        return walletService.getWalletInfo();
    }
}

exec getWalletInfo console can not see this log

zilm13 commented 6 years ago

@JasperXgwang have you added line like this in logback.xml?

 <logger level="INFO" name="WalletController"/>