diff --git a/taglib/flac/flacfile.cpp b/taglib/flac/flacfile.cpp index 66422f20..2483caf2 100644 --- a/taglib/flac/flacfile.cpp +++ b/taglib/flac/flacfile.cpp @@ -292,11 +292,13 @@ void FLAC::File::setID3v2FrameFactory(const ID3v2::FrameFactory *factory) ByteVector FLAC::File::streamInfoData() { + debug("FLAC::File::streamInfoData() -- This function is obsolete. Returning an empty ByteVector."); return ByteVector(); } long FLAC::File::streamLength() { + debug("FLAC::File::streamLength() -- This function is obsolete. Returning zero."); return 0; }