Bug 1158442 - Remove the "Performance Entry buffer size maximum reached" warning; r=baku

This happens far too often in our tests.  For example, in our
mochitest-3 debug mac test, we hit this warning 4,472 times.

At this point, this warning is only adding unneeded noise, slowing down
the tests and increasing the size of the logs unnecessarily.  Let's
remove it.
This commit is contained in:
Ehsan Akhgari 2015-04-24 23:59:42 -04:00
parent 43095806d0
commit 514c33e8a5

View File

@ -595,7 +595,6 @@ nsPerformance::AddEntry(nsIHttpChannel* channel,
// Don't add the entry if the buffer is full
if (mEntries.Length() >= mPrimaryBufferSize) {
NS_WARNING("Performance Entry buffer size maximum reached!");
return;
}