*
*/
protected void showScrobbleLog( final List<Track> tracks ) throws IOException {
final TScrobbleLog tpl = new TScrobbleLog();
final Response res = getResponse();
tpl.setTracks( tracks );
res.addHeader( "Content-Disposition", "inline; filename=\".scrobbler.log\"" );
res.showText( tpl.makeRenderer() );
}