1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 16:44:48 +02:00

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

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);
} }
} }
} }