diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-03-15 13:06:07 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2014-03-15 14:58:40 +1300 |
commit | 9e6a97c223927dc680ba545dfcbf2ed42cd3a5fc (patch) | |
tree | 40b78faddd8338b3f1fb15e3c2022f425dd4096b | |
parent | b855f11ac81a5b12e262e5caf5c1082f0743b98f (diff) |
Merge pull request #4400 from Jalle19/fix-log-messages
Fix some erroneous log messages
-rw-r--r-- | xbmc/filesystem/PVRFile.cpp | 2 | ||||
-rw-r--r-- | xbmc/pvr/PVRManager.cpp | 3 | ||||
-rw-r--r-- | xbmc/pvr/windows/GUIWindowPVRCommon.cpp | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/xbmc/filesystem/PVRFile.cpp b/xbmc/filesystem/PVRFile.cpp index 7665e9513c..4fe1a1d368 100644 --- a/xbmc/filesystem/PVRFile.cpp +++ b/xbmc/filesystem/PVRFile.cpp @@ -79,7 +79,7 @@ bool CPVRFile::Open(const CURL& url) return false; m_isPlayRecording = true; - CLog::Log(LOGDEBUG, "%s - Recording has started on filename %s", __FUNCTION__, strURL.c_str()); + CLog::Log(LOGDEBUG, "%s - playback has started on recording %s (%s)", __FUNCTION__, strURL.c_str(), tag->GetPVRRecordingInfoTag()->m_strIconPath.c_str()); } else { diff --git a/xbmc/pvr/PVRManager.cpp b/xbmc/pvr/PVRManager.cpp index 9a8f7c5e48..d02482f7ff 100644 --- a/xbmc/pvr/PVRManager.cpp +++ b/xbmc/pvr/PVRManager.cpp @@ -991,9 +991,6 @@ bool CPVRManager::OpenRecordedStream(const CPVRRecording &tag) bool bReturn = false; CSingleLock lock(m_critSection); - CLog::Log(LOGDEBUG,"PVRManager - %s - opening recorded stream '%s'", - __FUNCTION__, tag.m_strFile.c_str()); - if ((bReturn = m_addons->OpenStream(tag)) != false) { delete m_currentFile; diff --git a/xbmc/pvr/windows/GUIWindowPVRCommon.cpp b/xbmc/pvr/windows/GUIWindowPVRCommon.cpp index 0516a80881..6b356537e8 100644 --- a/xbmc/pvr/windows/GUIWindowPVRCommon.cpp +++ b/xbmc/pvr/windows/GUIWindowPVRCommon.cpp @@ -656,7 +656,7 @@ bool CGUIWindowPVRCommon::PlayRecording(CFileItem *item, bool bPlayMinimized /* } else { - CLog::Log(LOGERROR, "PVRManager - %s - can't open recording: no valid filename", __FUNCTION__); + CLog::Log(LOGERROR, "CGUIWindowPVRCommon - %s - can't open recording: no valid filename", __FUNCTION__); CGUIDialogOK::ShowAndGetInput(19033,0,19036,0); return false; } |