File tree Expand file tree Collapse file tree
openmetadata-service/src/main/java/org/openmetadata/service/resources/system Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments