fix: Removido Firabase Crash do LogUtil pos estava gerando spam

This commit is contained in:
Ivan Antunes 2024-08-28 08:11:01 -03:00
parent d0c16f6a73
commit e86e38feab
6 changed files with 21 additions and 13 deletions

View File

@ -409,10 +409,11 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
@ -557,11 +558,12 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
@ -599,10 +601,11 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

View File

@ -1,17 +1,14 @@
{
"images" : [
{
"filename" : "69.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "69 1.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "69 2.png",
"idiom" : "universal",
"scale" : "3x"
}

View File

@ -1,14 +1,22 @@
import 'dart:developer';
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
import 'package:hub/backend/api_requests/api_calls.dart';
class LogUtil {
static void requestAPIFailed(String url, String body, String reason,
dynamic error, StackTrace stack) async {
FirebaseCrashlytics.instance
.setCustomKey('URL', "${PhpGroup.getBaseUrl()}/$url");
FirebaseCrashlytics.instance.setCustomKey('Body', body);
static void requestAPIFailed(String url, String body, String reason, dynamic error, StackTrace stack) async {
await FirebaseCrashlytics.instance
.recordError(error, stack, reason: reason);
log("URL: ${PhpGroup.getBaseUrl()}/$url");
log("Body: $body");
log("Motivo: $reason");
log("Error: ${error.toString()}");
log("Stack: ${stack.toString()}");
// FirebaseCrashlytics.instance
// .setCustomKey('URL', "${PhpGroup.getBaseUrl()}/$url");
// FirebaseCrashlytics.instance.setCustomKey('Body', body);
//
// await FirebaseCrashlytics.instance
// .recordError(error, stack, reason: reason);
}
}