feat(logging): Remove redundant Report Bug button and related functionality (#2836)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-08-25 14:43:12 -05:00 committed by GitHub
parent 9fd184d3ac
commit 23d0688fba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 51 deletions

View file

@ -17,7 +17,6 @@
package com.geeksville.mesh.android
import com.geeksville.mesh.util.Exceptions
import timber.log.Timber
interface Logging {
@ -51,9 +50,4 @@ interface Logging {
throw ex
}
}
// / Report an error (including messaging our crash reporter service if allowed
fun reportError(s: String) {
Exceptions.report(Exception("logging reportError: $s"), s)
}
}