Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

1
2
3
4
5
6
7
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause)
throws Exception {
logger.error("UDP SERVER 异常,客户端信息:"+ctx.name()+"客户端地址信息:"+
ctx.channel().localAddress(),cause);
ctx.channel().closeFuture().sync();
}