aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <martijn@xbmc.org>2015-08-10 12:12:41 +0200
committerMartijn Kaijser <martijn@xbmc.org>2015-08-10 12:12:41 +0200
commit31c22e463b5f52a1137e43408df39c74444c46d7 (patch)
treee02c40ef50e73749171984b76718dc045b8e0699
parent3689e2092cb6cc32cec1d1c1b040cc6cae83d844 (diff)
parentaa629bd0d42e15887e861f25282fb52d833646e9 (diff)
Merge pull request #7747 from Memphiz/remove_clog_from_dtorbp15.1rc1-Isengard
[SectionLoader] - remove logging in D'Tor
-rw-r--r--xbmc/SectionLoader.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/xbmc/SectionLoader.cpp b/xbmc/SectionLoader.cpp
index df926843e7..b9cd896614 100644
--- a/xbmc/SectionLoader.cpp
+++ b/xbmc/SectionLoader.cpp
@@ -134,7 +134,6 @@ void CSectionLoader::UnloadAll()
while (it != g_sectionLoader.m_vecLoadedDLLs.end())
{
CDll& dll = *it;
- CLog::Log(LOGDEBUG,"SECTION:UnloadAll(DLL: %s)", dll.m_strDllName.c_str());
if (dll.m_pDll)
DllLoaderContainer::ReleaseModule(dll.m_pDll);
it = g_sectionLoader.m_vecLoadedDLLs.erase(it);