mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Disable online reporting of profiler data.
Nobody ever looks at the data, and it takes up a lot of server disk space. The feature should probably be restored in the future once we've fixed all the obvious performance problems, since a wider range of data lets us search for system-dependent issues (e.g. some GL drivers are particularly slow with particular features), but it's not worthwhile now. This was SVN commit r16213.
This commit is contained in:
parent
236f67d45f
commit
b9e46f386b
1 changed files with 5 additions and 2 deletions
|
|
@ -237,8 +237,11 @@ function init(initData, hotloadData)
|
|||
// the initial camera view) and a minute (when the profiler will
|
||||
// have settled down if framerates as very low), to give some
|
||||
// extremely rough indications of performance
|
||||
setTimeout(function() { reportPerformance(5); }, 5000);
|
||||
setTimeout(function() { reportPerformance(60); }, 60000);
|
||||
//
|
||||
// DISABLED: this information isn't currently useful for anything much,
|
||||
// and it generates a massive amount of data to transmit and store
|
||||
//setTimeout(function() { reportPerformance(5); }, 5000);
|
||||
//setTimeout(function() { reportPerformance(60); }, 60000);
|
||||
}
|
||||
|
||||
function selectViewPlayer(playerID)
|
||||
|
|
|
|||
Loading…
Reference in a new issue