Skip to content

Commit

Permalink
ajout d'un log pour pb de deadlock
Browse files Browse the repository at this point in the history
  • Loading branch information
julg committed May 21, 2024
1 parent fa9aa18 commit 5ea57c9
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,13 @@ public TheseModel process(TheseModel theseModel) throws Exception {
mutex.lock();
try {
thesesEnTraitement.removeAll(nntLies);
} finally {
} catch (Exception e) {
for (Object nnt:nntLies) {
log.error("nnt lies " + nnt);
}
log.error("removeall de nntlies ne fonctionne pas : " + e);
}
finally {
mutex.unlock();
}

Expand Down

0 comments on commit 5ea57c9

Please sign in to comment.