Fix cases of inlined & missing log tags.

This commit is contained in:
Alan Evans
2020-05-11 11:03:42 -03:00
committed by Alex Hart
parent 3db5da1c8d
commit 06ab3cf013
18 changed files with 52 additions and 40 deletions

View File

@@ -12,6 +12,9 @@ import java.io.UnsupportedEncodingException;
public class PartParser {
private static final String TAG = Log.tag(PartParser.class);
public static String getMessageText(PduBody body) {
String bodyText = null;
@@ -31,7 +34,7 @@ public class PartParser {
partText = "";
}
} catch (UnsupportedEncodingException e) {
Log.w("PartParser", e);
Log.w(TAG, e);
partText = "Unsupported Encoding!";
}