Bug 707675 - Change OOM log level from error to warning. r=blassey a=java-only

This commit is contained in:
Kartikaya Gupta 2011-12-13 16:42:51 -05:00
parent ada63910c1
commit 754e9e25fa

View File

@ -209,7 +209,7 @@ public class GeckoSoftwareLayerClient extends LayerClient implements GeckoEventL
b.copyPixelsFromBuffer(mBuffer.asIntBuffer());
return b;
} catch (OutOfMemoryError oom) {
Log.e(LOGTAG, "Unable to create bitmap", oom);
Log.w(LOGTAG, "Unable to create bitmap", oom);
return null;
}
}