Skip to content

Commit

Permalink
minor debug logging improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
de-code committed Apr 17, 2020
1 parent f31ef7c commit e70b72c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public InitModel(String modelName, File modelPath) {
public void run() {
Jep jep = JEPThreadPool.getInstance().getJEPInstance();
try {
LOGGER.debug("DeLFTModel, loading model: {}", modelPath.getAbsolutePath());
LOGGER.debug("DeLFTModel, loading model from path: {}", modelPath.getAbsolutePath());
jep.eval(this.modelName+" = Sequence('" + this.modelName.replace("_", "-") + "')");
jep.eval(this.modelName+".load(dir_path='"+modelPath.getAbsolutePath()+"')");
} catch(JepException e) {
Expand Down

0 comments on commit e70b72c

Please sign in to comment.