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

View file

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

View file

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