Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f0b7de4 authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

805 disable sentry telemetry support

parent a2fe6d28
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ plugins {

def versionMajor = 1
def versionMinor = 3
def versionPatch = 5
def versionPatch = 6

def getTestProp(String propName) {
    def result = ""
+0 −2
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ import foundation.e.drive.services.SynchronizationService;
import foundation.e.drive.utils.AppConstants;
import foundation.e.drive.utils.CommonUtils;
import foundation.e.drive.utils.ReleaseTree;
import foundation.e.lib.telemetry.Telemetry;
import timber.log.Timber;
import static timber.log.Timber.DebugTree;

@@ -44,7 +43,6 @@ public class EdriveApplication extends Application {
        if (BuildConfig.DEBUG) {
            Timber.plant(new DebugTree());
        } else {
            Telemetry.INSTANCE.init(BuildConfig.SENTRY_DSN, this);
            Timber.plant(new ReleaseTree());
        }
        Timber.tag("EdriveApplication");
+0 −5
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

import foundation.e.lib.telemetry.Telemetry;
import timber.log.Timber;

/**
@@ -31,10 +30,6 @@ public class ReleaseTree extends Timber.DebugTree{
            return;
        }

        if (priority >= Log.WARN) {
            Telemetry.INSTANCE.reportMessage(tag + " " + message);
        }

        super.log(priority, tag, message, throwable);
    }
}