Skip to content

Commit

Permalink
Add log
Browse files Browse the repository at this point in the history
  • Loading branch information
hexiaofeng committed Jun 11, 2024
1 parent 2119fd4 commit f4a4752
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ protected Map<String, Object> loadConfigs(String resource, String prefix) {
if (url != null) {
try {
Map<String, Object> result = parse(url.openStream(), parser);
logger.info("Successfully load config from " + url);
logger.info("[LiveAgent]Successfully load config from " + url);
return result;
} catch (Throwable e) {
logger.warn("Failed to load config from " + url, e);
logger.warn("[LiveAgent]Failed to load config from " + url, e);
return new HashMap<>();
}
}
Expand Down

0 comments on commit f4a4752

Please sign in to comment.