|
@@ -52,7 +52,7 @@ public class SubscriptionResponse implements DsrcAsn1Response {
|
|
|
boolean guaranteeBool = subscriptionData.getDatexSubscribeGuaranteeBool().value;
|
|
|
|
|
|
objectId = DsrcAsn1Utils.getObjectId(subscriptionData.getDatexSubscribePdu().getEndApplicationMessageId().value);
|
|
|
- log.info("SubscriptionResponse.response: objectId: {}", objectId);
|
|
|
+ //log.info("SubscriptionResponse.response: objectId: {}", objectId);
|
|
|
|
|
|
if (objectId != eObjectId.OBJ_ProbeVehicleDetectionRoadSide.getValue() &&
|
|
|
objectId > eObjectId.OBJ_DSRCRecentOBUTransactionInfo.getValue()) {
|
|
@@ -66,20 +66,20 @@ public class SubscriptionResponse implements DsrcAsn1Response {
|
|
|
if (subscriptionMode != null) {
|
|
|
// subscriptionMode = single, event-driven, periodic
|
|
|
if (subscriptionMode.getSingle() != null) {
|
|
|
- log.info("SubscriptionResponse.response: {}, SubscriptionSingleService", ipAddress);
|
|
|
+ //log.info("SubscriptionResponse.response: {}, SubscriptionSingleService", ipAddress);
|
|
|
subscriptionService = SubscriptionSingleService.getInstance();
|
|
|
} else if (subscriptionMode.getEventDriven() != null) {
|
|
|
- log.info("SubscriptionResponse.response: {}, SubscriptionRegisterService[EventDriven]", ipAddress);
|
|
|
+ //log.info("SubscriptionResponse.response: {}, SubscriptionRegisterService[EventDriven]", ipAddress);
|
|
|
subscriptionService = SubscriptionRegisterService.getInstance();
|
|
|
} else if (subscriptionMode.getPeriodic() != null) {
|
|
|
- log.info("SubscriptionResponse.response: {}, SubscriptionRegisterService[Periodic]", ipAddress);
|
|
|
+ //log.info("SubscriptionResponse.response: {}, SubscriptionRegisterService[Periodic]", ipAddress);
|
|
|
subscriptionService = SubscriptionRegisterService.getInstance();
|
|
|
}
|
|
|
if (guaranteeBool) {
|
|
|
resC2c = DsrcAsn1Accept.makeC2CAuthenticatedMessage(this.obj, this.ctx.channel(), this.c2c);
|
|
|
}
|
|
|
} else {
|
|
|
- log.info("SubscriptionResponse.response: {}, SubscriptionMode null", ipAddress);
|
|
|
+ log.warn("SubscriptionResponse.response: {}, SubscriptionMode null", ipAddress);
|
|
|
}
|
|
|
}
|
|
|
}
|