Merge pull request #31 from lbryio/lbry_tv

Put back printf statement into the stats module
This commit is contained in:
sayplastic 2019-12-17 00:36:56 +07:00 committed by GitHub
commit d89b58c52a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,5 +118,5 @@ func (s *Stats) log() {
errStr = errStr[:len(errStr)-2] // trim last comma and space
}
s.logger.Debugf("%s stats: %d blobs, %d streams, errors: %s", s.name, blobs, streams, errStr)
s.logger.Printf("%s stats: %d blobs, %d streams, errors: %s", s.name, blobs, streams, errStr)
}