That correct,
also you can check with "DBCC CHECKTABLE(syslogs)"
You can try this in master Databases (in a test server)
USE master
go
SELECT data_pgs(8, doampg)
FROM sysindexes where id=8
go
-- if you dont backup the transaction log !!!!!!
DUMP TRANSACTION master WITH TRUNCATE_ONLY
go
SELECT data_pgs(8, doampg)
FROM sysindexes where id=8
go
8 pages
DBCC CHECKTABLE(syslogs)
go
will say 1 pages
In fact, the syslogs have take an extends that have 8 pages, but only use 1 page from this.
If are you checking the spaces, then is more usefull the pages take by extends, that it's the select, because the server take by extends(8pages) from the databases.
bye
Sebastian