mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
Filter out spammy libc messages on android
This commit is contained in:
@@ -412,6 +412,10 @@ struct LogLine
|
||||
if(message.back() == '\r')
|
||||
message.pop_back();
|
||||
|
||||
// ignore these libc spam messages
|
||||
if(message.contains("Access denied finding property"))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user