Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bee5b9d7 authored by Vasu Nori's avatar Vasu Nori
Browse files

Change Log.wtf() call to Log.w()

messages from Log.wtf() sound pretty bad and engineers seem to think
something terrible has gone wrong.
parent c5dfa704
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1873,7 +1873,7 @@ public class SQLiteDatabase extends SQLiteClosable {
                 * JNI method. If entire cache is wiped out, it could cause a big GC activity
                 * just because a (rogue) process is using the cache incorrectly.
                 */
                Log.wtf(TAG, "Too many sql statements in database cache. Make sure your sql " +
                Log.w(TAG, "Too many sql statements in database cache. Make sure your sql " +
                        "statements are using prepared-sql-statement syntax with '?' for " +
                        "bindargs, instead of using actual values");
                Set<String> keySet = mCompiledQueries.keySet();