Twidere-App-Android-Twitter.../twidere/src/main/java/org/mariotaku/twidere/util/TwidereLogger.java

77 lines
2.4 KiB
Java

/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2015 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.util;
import android.app.Application;
import android.os.AsyncTask;
import android.support.annotation.Nullable;
import android.util.Log;
import org.acra.ACRA;
import org.acra.ErrorReporter;
import org.mariotaku.twidere.BuildConfig;
import org.mariotaku.twidere.Constants;
/**
* Created by mariotaku on 15/7/8.
*/
public class TwidereLogger extends AbsLogger implements Constants {
@Override
protected void logImpl(@Nullable String message, @Nullable Throwable throwable) {
Log.d(LOGTAG, message, throwable);
}
@Override
protected void errorImpl(@Nullable String message, @Nullable Throwable throwable) {
final ErrorReporter errorReporter = ACRA.getErrorReporter();
if (throwable == null && message == null) {
throw new NullPointerException("Message and Throwable can't be both null");
}
if (message != null) {
if (BuildConfig.DEBUG) {
Log.w(LOGTAG, message, throwable);
}
handleSilentException(new Exception(message, throwable));
return;
}
if (BuildConfig.DEBUG) {
Log.w(LOGTAG, throwable);
}
handleSilentException(throwable);
}
private void handleSilentException(final Throwable throwable) {
AsyncTask.execute(new Runnable() {
@Override
public void run() {
ACRA.getErrorReporter().handleSilentException(throwable);
}
});
}
@Override
protected void initImpl(Application application) {
ACRA.init(application);
}
}