Explorar el Código

增加日志

develop
bin hace 3 años
padre
commit
7974eacf79
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      src/main/java/com/ssjl/zhaobiao/guizhou/utils/GZHttpUtil.java

+ 2
- 0
src/main/java/com/ssjl/zhaobiao/guizhou/utils/GZHttpUtil.java Ver fichero

@@ -24,8 +24,10 @@ public class GZHttpUtil {
Headers headers = new Headers.Builder().add("meid-id", imei).add("imsi-id", phone).build();
byte[] b = req.toByte();
b = GZUtil.encode(b);
log.info("发给电信:" + ByteUtil.bytesToHexString(b));
try {
byte[] res = httpUtil.postBytes(url, b, headers);
log.info("电信返回:" + ByteUtil.bytesToHexString(res));
return res;
} catch (IOException e) {
log.info("timeout目标地址:" + url);


Cargando…
Cancelar
Guardar