mirror of
https://github.com/nextcloud/talk-android
synced 2025-03-06 06:15:12 +00:00
improve logging for LoganSquareJodaTimeConverter
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
5e23dc4b4c
commit
fa1360090a
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user