Skip to content

Commit d232e85

Browse files
Make IndexResource Logs debug (#27588)
1 parent 557626f commit d232e85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • openmetadata-service/src/main/java/org/openmetadata/service/resources/system

openmetadata-service/src/main/java/org/openmetadata/service/resources/system/IndexResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void initialize(OpenMetadataApplicationConfig config) {
4747
}
4848

4949
public static String getIndexFile(String basePath) {
50-
LOG.info("IndexResource.getIndexFile called with basePath: [{}]", basePath);
50+
LOG.debug("IndexResource.getIndexFile called with basePath: [{}]", basePath);
5151

5252
String result = RAW_INDEX_HTML.replace("${basePath}", basePath);
5353
String basePathLine =
@@ -56,7 +56,7 @@ public static String getIndexFile(String basePath) {
5656
.filter(line -> line.contains("window.BASE_PATH"))
5757
.findFirst()
5858
.orElse("NOT FOUND");
59-
LOG.info("After replacement, window.BASE_PATH line: {}", basePathLine.trim());
59+
LOG.debug("After replacement, window.BASE_PATH line: {}", basePathLine.trim());
6060

6161
return result;
6262
}

0 commit comments

Comments
 (0)