Remove log statement

This commit is contained in:
David Howden 2015-04-16 08:24:41 +10:00
parent 060159f528
commit 48793f15b7

View File

@ -8,7 +8,6 @@ import (
"errors"
"fmt"
"io"
"log"
"os"
"strconv"
"strings"
@ -68,7 +67,6 @@ type metadataFLAC struct {
func (m *metadataFLAC) readFLACMetadataBlock(r io.ReadSeeker) (last bool, err error) {
blockHeader, err := readBytes(r, 1)
if err != nil {
log.Println(err)
return
}