#29: Add todos for the error logging

This commit is contained in:
Joshua Ott 2017-08-17 19:44:17 +02:00
parent 55926caf8c
commit 4941826172
3 changed files with 8 additions and 0 deletions

View file

@ -752,6 +752,7 @@ public class PlayMusicManager {
tagID3v2.setGenreDescription(musicTrack.getGenre());
} catch (IllegalArgumentException e) {
// Failed
// todo: Add logging
}
}
@ -806,6 +807,7 @@ public class PlayMusicManager {
return allAccessExporter.save(dest);
} catch (Exception e) {
// Failed
// todo: Add logging
}
// Failed

View file

@ -125,6 +125,7 @@ public abstract class MusicTrackList extends ArtworkEntry {
}
// Failed
// todo: Add logging
return null;
}

View file

@ -64,6 +64,7 @@ public class FileTools {
}
} catch (Exception e) {
// Failed
// todo: Add logging
}
return false;
}
@ -139,6 +140,7 @@ public class FileTools {
success = true;
} catch (IOException ex) {
// Failed
// todo: Add logging
success = false;
}
@ -167,6 +169,7 @@ public class FileTools {
success = fileCopy(inputStream, outputStream);
} catch (IOException ex) {
// Failed
// todo: Add logging
success = false;
}
@ -178,6 +181,7 @@ public class FileTools {
outputStream.close();
} catch (IOException ex) {
// Failed
// todo: Add logging
success = false;
}
@ -257,6 +261,7 @@ public class FileTools {
}
} catch (IOException e) {
// Failed
// todo: Add logging
e.printStackTrace();
}