Skip to content

Commit

Permalink
Updated crash message (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfouto committed May 31, 2021
1 parent 74a2050 commit 00d0acd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>pt.unl.fct.di.novasys</groupId>
<artifactId>babel-core</artifactId>
<version>0.4.41</version>
<version>0.4.42</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ private void mainLoop() {
+ protoId + " (" + protoName + ")");
}
} catch (Exception e) {
logger.error("Protocol {}({}) crashed with unhandled exception: {}", this.getProtoId(), this.getProtoName(), e.toString());
logger.error("Protocol " + getProtoName() +" ("+ getProtoId() +") crashed with unhandled exception " + e, e);
e.printStackTrace();
}
}
Expand Down

0 comments on commit 00d0acd

Please sign in to comment.