refactor: remove useless prints.

This commit is contained in:
Aunali321 2022-10-16 23:54:07 +05:30
parent fbd4359d61
commit 1a97cdf91d
2 changed files with 3 additions and 9 deletions

View file

@ -88,7 +88,6 @@ class ManagerAPI {
Future<void> setSentryStatus(bool value) async {
await _prefs.setBool('sentryEnabled', value);
print('Sentry status: $value');
}
bool isCrashlyticsEnabled() {
@ -97,7 +96,6 @@ class ManagerAPI {
Future<void> setCrashlyticsStatus(bool value) async {
await _prefs.setBool('crashlyticsEnabled', value);
print('Crashlytics status: $value');
}
List<PatchedApplication> getPatchedApps() {