Android: What E/Perf stands for?

Viewed 22

My android app craches somethimes and only erros I can see at logcat are

E/Perf: Fail to get file list com.company.app_id
E/Perf: getFolderSize() : Exception_1 = java.lang.NullPointerException: Attempt to get length of null array
E/Perf: Fail to get file list com.company.app_id
E/Perf: getFolderSize() : Exception_1 = java.lang.NullPointerException: Attempt to get length of null array

Does anybody has an idea what this 'Perf' stands for?

1 Answers

Not 100% sure but: according to this, perf means performance or perform, and E/ means error, you might find a solution here or here or just by googling any of the error messages

Related