Skip to content

Commit

Permalink
Merge branch 'master' of [email protected]:j256/ormlite-android.git
Browse files Browse the repository at this point in the history
  • Loading branch information
j256 committed May 23, 2021
2 parents 0e9eed3 + 7a6f1e8 commit 99d2fe1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public AndroidLogBackend(String className) {
// make sure that our tag length is not too long
int length = simpleName.length();
if (length > MAX_TAG_LENGTH) {
simpleName = this.className.substring(length - MAX_TAG_LENGTH, length);
simpleName = className.substring(length - MAX_TAG_LENGTH, length);
}
this.className = simpleName;
// find the maximum level value
Expand Down

0 comments on commit 99d2fe1

Please sign in to comment.