Fix logging of android platform detection

This commit is contained in:
Norman Maurer 2013-04-08 21:19:20 +02:00
parent 9308625b2c
commit 60cfb547b4

View File

@ -287,7 +287,9 @@ public final class PlatformDependent {
android = false;
}
logger.debug("Platform: Android");
if (android) {
logger.debug("Platform: Android");
}
return android;
}