|
|
@@ -28,8 +28,10 @@ public class FeatureV2RemoteService {
|
|
|
return Collections.emptyMap();
|
|
|
}
|
|
|
try {
|
|
|
+ long start = System.currentTimeMillis();
|
|
|
Map<String, String> result = client.multiGetFeature(protos);
|
|
|
- log.debug("FeatureV2RemoteService.getFeature: protos.size={}, result.size={}", protos.size(), result != null ? result.size() : 0);
|
|
|
+ log.debug("FeatureV2RemoteService.getFeature: protos.size={}, result.size={}, costTime={}",
|
|
|
+ protos.size(), result != null ? result.size() : 0, System.currentTimeMillis() - start);
|
|
|
return result;
|
|
|
} catch (Exception e) {
|
|
|
log.error("FeatureV2RemoteService.getFeature: unexpected exception", e);
|