1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2024-11-26 02:06:30 +00:00

Slightly modified log levels in DownloadManager.

This commit is contained in:
Fabian Schlenz 2016-08-31 07:05:00 +02:00
parent 8f5a9a9ad5
commit ed442765ef

View File

@ -260,7 +260,8 @@ public class DownloadManager {
FileOutputStream fos = null; FileOutputStream fos = null;
try { try {
String temp_filename = target + ".downloading"; String temp_filename = target + ".downloading";
logger.debug("Temporary filename {}", temp_filename); logger.debug("Downloading file {}", target);
logger.trace("Temporary filename: {}", temp_filename);
int offset = 0; int offset = 0;
if (new File(temp_filename).isFile()) { if (new File(temp_filename).isFile()) {
@ -272,7 +273,7 @@ public class DownloadManager {
offset = 0; offset = 0;
} }
} }
logger.debug("offset before the loop is {}", offset); logger.trace("offset before the loop is {}", offset);
fos = new FileOutputStream(temp_filename, true); fos = new FileOutputStream(temp_filename, true);
TLFile response; TLFile response;
do { do {
@ -298,7 +299,7 @@ public class DownloadManager {
new File(temp_filename).delete(); new File(temp_filename).delete();
System.exit(1); System.exit(1);
} }
logger.debug("Renaming {} to {}", temp_filename, target); logger.trace("Renaming {} to {}", temp_filename, target);
Files.move(new File(temp_filename).toPath(), new File(target).toPath(), StandardCopyOption.REPLACE_EXISTING); Files.move(new File(temp_filename).toPath(), new File(target).toPath(), StandardCopyOption.REPLACE_EXISTING);
last_download_succeeded = true; last_download_succeeded = true;
return true; return true;