getSendMsnInfo().sendPlayingInfo(currentTrack.getArtist(), currentTrack.getName(),
currentTrack.getAlbum(), true);
setMusicName(currentTrack.getArtist() + " - " + currentTrack.getName());
Scrobbler scrobbler = getScrobbler(session);
if (scrobbler != null) {
ResponseStatus status = scrobbler.nowPlaying(currentTrack.getArtist(), currentTrack.getName());
LOGGER.debug("Submit OK: " + status.ok());
} else {
LOGGER.error("Can't scrobble now");
}
} catch (Exception e) {
LOGGER.debug("Error on calling nowPlaying: " + e.getMessage());