aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Morten Kvarving <spiff@xbmc.org>2013-05-30 14:15:48 -0700
committerArne Morten Kvarving <spiff@xbmc.org>2013-05-30 14:15:48 -0700
commitff5416b6c786da9cda7787495b99d85a9738ff05 (patch)
tree4fd385fd4c59a53e623ae30d42029047cdcccdb7
parent2639bff4eb4c29a4d214a95df85cccedc88d2040 (diff)
parent496c4bd2d587620956c7a7c99d63d51bcafe7230 (diff)
Merge pull request #2789 from ace20022/cue_log
[CueDocument] Cosmetic: Change the log string to a more meaningful one
-rw-r--r--xbmc/CueDocument.cpp4
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;
}