Raise log level of InterruptedException

in SynchronizationPoint.
This commit is contained in:
Florian Schmaus 2015-01-18 20:44:12 +01:00
parent ed67ed8e11
commit 31d573753b
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ public class SynchronizationPoint<E extends Exception> {
break; break;
} }
} catch (InterruptedException e) { } catch (InterruptedException e) {
LOGGER.log(Level.FINE, "Spurious interrupt while waiting for condition or timeout", e); LOGGER.log(Level.WARNING, "Thread interrupt while waiting for condition or timeout ignored", e);
} }
} }
} }