From c895a6b7e273fd5d9ca3034b326f0f6b01105f27 Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Fri, 28 Jul 2017 12:00:12 +0200 Subject: [PATCH] Added codec to "Done buffering" message --- src/input/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.cpp b/src/input/input.cpp index 2a2cedc7..9d007e88 100644 --- a/src/input/input.cpp +++ b/src/input/input.cpp @@ -628,7 +628,7 @@ namespace Mist { } bufferFinalize(track); bufferTimer = Util::bootMS() - bufferTimer; - DEBUG_MSG(DLVL_DEVEL, "Done buffering page %d (%llu packets, %llu bytes) for track %d in %llums", keyNum, packCounter, byteCounter, track, bufferTimer); + DEBUG_MSG(DLVL_DEVEL, "Done buffering page %d (%llu packets, %llu bytes) for track %d (%s) in %llums", keyNum, packCounter, byteCounter, track, myMeta.tracks[track].codec.c_str(), bufferTimer); pageCounter[track][keyNum] = 15; return true; }