Skip to content

Commit b931a6d

Browse files
committed
Review comments
1 parent 0fce229 commit b931a6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Chronon Feature Service
1+
# Chronon Feature Fetching Service
22

33
The feature service module consists of code to bring up a service that provides a thin shim around the Fetcher code. This
44
is meant to aid Chronon adopters who either need a quicker way to get a feature serving layer up and running or need to

service/src/main/java/ai/chronon/service/handlers/FeaturesHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public FeaturesHandler(EntityType entityType, JavaFetcher fetcher) {
6868
@Override
6969
public void handle(RoutingContext ctx) {
7070
String entityName = ctx.pathParam("name");
71-
logger.info("Retrieving {} - {}", entityType.name(), entityName);
71+
logger.debug("Retrieving {} - {}", entityType.name(), entityName);
7272
JTry<List<JavaRequest>> maybeRequest = parseJavaRequest(entityName, ctx.body());
7373
if (! maybeRequest.isSuccess()) {
7474
logger.error("Unable to parse request body", maybeRequest.getException());

0 commit comments

Comments
 (0)