fix: 修复有lic但没有验证器报错

This commit is contained in:
fit2cloud-chenyw 2021-09-09 18:18:56 +08:00
parent 078179ba98
commit b9eecf8e21

View File

@ -45,9 +45,12 @@ public class DefaultLicenseService {
}
return f2CLicenseResponse;
}catch (Exception e){
e.printStackTrace();
return F2CLicenseResponse.invalid(e.getMessage());
LogUtil.error(e.getMessage());
// e.printStackTrace();
// return F2CLicenseResponse.invalid(e.getMessage());
return F2CLicenseResponse.noRecord();
}
}