Skip to content

Commit

Permalink
log.warn
Browse files Browse the repository at this point in the history
  • Loading branch information
murermader committed Dec 18, 2024
1 parent 778912e commit 8745615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/main/java/org/polypheny/db/webui/HttpServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static HttpServer getInstance() {
Optional<File> globalUiPath = PolyphenyHomeDirManager.getInstance().getGlobalFile( "ui" );

if ( globalUiPath.isPresent() && globalUiPath.get().isDirectory() && Objects.requireNonNull( globalUiPath.get().list() ).length != 0 ) {
log.info( "Using global UI path: {}", globalUiPath.get().getAbsolutePath() );
log.warn( "Using global UI path: {}", globalUiPath.get().getAbsolutePath() );
uiPath = globalUiPath.get();
}
if ( !PolyphenyHomeDirManager.getInstance().isAccessible( uiPath ) ) {
Expand Down

0 comments on commit 8745615

Please sign in to comment.