diff options
-rw-r--r-- | xbmc/CueDocument.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/CueDocument.cpp b/xbmc/CueDocument.cpp index cfe41d6748..449364977b 100644 --- a/xbmc/CueDocument.cpp +++ b/xbmc/CueDocument.cpp @@ -106,7 +106,7 @@ bool CCueDocument::Parse(const CStdString &strFile) { if (bCurrentFileChanged) { - OutputDebugString("Track split over multiple files, unsupported"); + OutputDebugString("Track split over multiple files, unsupported ('" + strFile + "')\n"); return false; } @@ -377,7 +377,7 @@ bool CCueDocument::ResolvePath(CStdString &strPath, const CStdString &strBase) return true; } } - CLog::Log(LOGERROR,"Could not find FILE referenced in cue, case sensitivity issue?"); + CLog::Log(LOGERROR,"Could not find '%s' referenced in cue, case sensitivity issue?", strPath); return false; } |