Authored by 张帅

日志打印异常

... ... @@ -45,7 +45,7 @@ public class ProductIdentifyController {
ProductIdentifyResp info = identifyService.queryIdentifyInfo(tagId, nfcUid);
return new ApiResponse.ApiResponseBuilder().code(200).data(info).build();
}catch (Exception e){
logger.warn("queryIdentifyInfo error! tagId={}, nfcUid={}, ", tagId, nfcUid);
logger.warn("queryIdentifyInfo error! tagId={}, nfcUid={}, e is {}", tagId, nfcUid, e);
if( e instanceof GatewayException){
throw e;
}
... ...