-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
optimize performance by removing unnecessary logs #913
base: master
Are you sure you want to change the base?
Conversation
This is based on the task https://github.com/onaio/opensrp-tasks/issues/152 |
} | ||
-assumenosideeffects class android.util.Log { | ||
public static boolean isLoggable(java.lang.String, int); | ||
public static int v(...); | ||
public static int d(...); | ||
public static int i(...); | ||
public static int w(...); | ||
public static int e(...); | ||
} | ||
|
||
-assumenosideeffects class timber.log.Timber* { | ||
public static *** v(...); | ||
public static *** d(...); | ||
public static *** i(...); | ||
public static int w(...); | ||
public static int e(...); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a better way to do this without repetition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I followed the guide here https://github.com/onaio/opensrp-tasks/issues/152
No description provided.