Skip to content

Commit

Permalink
update add config
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewErispe committed Sep 19, 2024
1 parent 0289f95 commit 81eba16
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public final class AppConfig {
public static final String API_IP = CONFIG.getString("API_IP");
public static final String API_HTTP_PORT = CONFIG.getString("API_HTTP_PORT");
public static final Float LINKER_MATCH_THRESHOLD = (float) CONFIG.getDouble("LINKER_MATCH_THRESHOLD");
public static final Float LINKER_MIN_THRESHOLD = (float) CONFIG.getDouble("LINKER_MIN_THRESHOLD");
public static final Float LINKER_MAX_THRESHOLD = (float) CONFIG.getDouble("LINKER_MAX_THRESHOLD");
public static final Float LINKER_MATCH_THRESHOLD_MARGIN = (float) CONFIG.getDouble("LINKER_MATCH_THRESHOLD_MARGIN");
public static final Level GET_LOG_LEVEL = Level.toLevel(CONFIG.getString("LOG4J2_LEVEL"));

Expand Down

0 comments on commit 81eba16

Please sign in to comment.