summaryrefslogtreecommitdiffstats
path: root/play/index.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-22 20:40:58 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-22 20:40:58 +0000
commita285c5e5512b38cf27dc0aec1633ebad0ed4d150 (patch)
tree9064fdc6b9c87893acbc1a198b45acb8ae5373f9 /play/index.php
parent528cb13dd93ce280c90149320b5b93eb4ae3c1df (diff)
downloadampache-a285c5e5512b38cf27dc0aec1633ebad0ed4d150.tar.gz
ampache-a285c5e5512b38cf27dc0aec1633ebad0ed4d150.tar.bz2
ampache-a285c5e5512b38cf27dc0aec1633ebad0ed4d150.zip
improved debug message
Diffstat (limited to 'play/index.php')
-rw-r--r--play/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/play/index.php b/play/index.php
index 1f55f1e2..8c16b558 100644
--- a/play/index.php
+++ b/play/index.php
@@ -243,7 +243,7 @@ if (!is_resource($fp)) {
} // else not downsampling
if ($start) {
- debug_event('seek','Start point recieved, skipping ahead in the song...','5');
+ debug_event('seek','Content-Range header recieved, skipping ahead ' . $start . ' bytes out of ' . $song->size,'5');
$browser->downloadHeaders($song_name, $song->mime, false, $song->size);
fseek( $fp, $start );
$range = $start ."-". ($song->size-1) . "/" . $song->size;