You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added a debug statement
Timber.v("perm % is a valid combination %s",possibleCom,validCom);
instead of
Timber.v("perm %s is a valid combination %s",possibleCom,validCom);
There was no warning or error. The above bug (missing s after %) causes weird behavior.
In my case the subsequent library call post the debug log never completed.
The text was updated successfully, but these errors were encountered:
I added a debug statement
Timber.v("perm % is a valid combination %s",possibleCom,validCom);
instead of
Timber.v("perm %s is a valid combination %s",possibleCom,validCom);
There was no warning or error. The above bug (missing s after %) causes weird behavior.
In my case the subsequent library call post the debug log never completed.
The text was updated successfully, but these errors were encountered: