}
private void skipToPrevious() {
if (currentSongIndex > 0) {
currentSongIndex--;
Song currentSong = getCurrentSong();
log.info("skipping back to: " + currentSong);
startPlaying(currentSong, 0, 0);
} else {
log.info("skipped beyond start of playlist");
}