Do you want to reduce the log file size?
1. dbcc sqlperf(logspace) will tell you log file size and spaced used.
2. backup log yourdbname with truncate_only to truncate the inactive transactions.
3. dbcc shrinkfile(yourlogfilelogicalname, yourtargetsize) to reduce the log file size.
For above commands, Refer to BOL for more details.