LibraryDownloader: Print exception on download failure

Change-Id: I25ecbf82deb9464e857969dc90d39a567ab8b70a
This commit is contained in:
Orgad Shaneh
2017-10-15 12:33:47 +03:00
parent 4f2fcc5719
commit b42bbfd903

View File

@@ -250,6 +250,7 @@ class LibraryDownloader {
} catch (IOException err) {
deleteDst();
System.err.println(" !! FAIL !!");
System.err.println(err);
System.err.flush();
throw err;
}