improve logging for LoganSquareJodaTimeConverter

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2021-04-23 10:23:41 +02:00
parent 5e23dc4b4c
commit fa1360090a
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -31,6 +31,7 @@ import org.joda.time.DateTime;
import java.io.IOException;
public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
private static final String TAG = LoganSquareJodaTimeConverter.class.getSimpleName();
@Override
public DateTime parse(JsonParser jsonParser) throws IOException {
@ -41,7 +42,7 @@ public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
try {
return DateTime.parse(dateString);
} catch (final RuntimeException exception) {
Log.e("NC", exception.getLocalizedMessage());
Log.e(TAG, exception.getLocalizedMessage(), exception);
}
return null;
}
@ -54,4 +55,4 @@ public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
jsonGenerator.writeString(object != null ? object.toString() : null);
}
}
}
}