diff options
author | vdrfan <vdrfan@svn> | 2010-10-24 16:15:09 +0000 |
---|---|---|
committer | vdrfan <vdrfan@svn> | 2010-10-24 16:15:09 +0000 |
commit | 5e53e7e49e29650015041b5b77eb55e94f0061e4 (patch) | |
tree | ae3dacd0350a33b4981b262cab491336bc2bbeae | |
parent | ee2f93db3180dcef6a74fa3872b782ff22168fca (diff) |
changed: print debug log location in OSD debug info
(cherry picked from commit 985443fc01e1066717b90c0913829d4a87d295a8)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@34983 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/Application.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index da4e81af7e..1a5ff118d2 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -2107,12 +2107,12 @@ void CApplication::RenderMemoryStatus() CStdString profiling = CGUIControlProfiler::IsRunning() ? " (profiling)" : ""; CStdString strCores = g_cpuInfo.GetCoresUsageString(); #if !defined(_LINUX) - info.Format("FreeMem %d/%d Kb, FPS %2.1f, %s%s", stat.dwAvailPhys/1024, stat.dwTotalPhys/1024, - g_infoManager.GetFPS(), strCores.c_str(), profiling.c_str()); + info.Format("LOG: %sxbmc.log\nMEM: %d/%d Kb - FPS: %2.1f fps\nCPU: %s%s", g_settings.m_logFolder.c_str(), + stat.dwAvailPhys/1024, stat.dwTotalPhys/1024, g_infoManager.GetFPS(), strCores.c_str(), profiling.c_str()); #else double dCPU = m_resourceCounter.GetCPUUsage(); - info.Format("FreeMem %"PRIu64"/%"PRIu64" Kb, FPS %2.1f, %s. CPU-XBMC %4.2f%%%s", stat.dwAvailPhys/1024, stat.dwTotalPhys/1024, - g_infoManager.GetFPS(), strCores.c_str(), dCPU, profiling.c_str()); + info.Format("LOG: %sxbmc.log\nMEM: %"PRIu64"/%"PRIu64" Kb - FPS: %2.1f fps\nCPU: %s (CPU-XBMC %4.2f%%%s)", g_settings.m_logFolder.c_str(), + stat.dwAvailPhys/1024, stat.dwTotalPhys/1024, g_infoManager.GetFPS(), strCores.c_str(), dCPU, profiling.c_str()); #endif |