Revision: 34974
http://xbmc.svn.sourceforge.net/xbmc/?rev=34974&view=rev
Author: vdrfan
Date: 2010-10-23 21:25:12 +0000 (Sat, 23 Oct 2010)
Log Message:
-----------
changed: print debug log location in OSD debug info
Modified Paths:
--------------
trunk/xbmc/Application.cpp
Modified: trunk/xbmc/Application.cpp
===================================================================
--- trunk/xbmc/Application.cpp 2010-10-23 18:21:45 UTC (rev 34973)
+++ trunk/xbmc/Application.cpp 2010-10-23 21:25:12 UTC (rev 34974)
@@ -2098,12 +2098,12 @@
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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|