remove logs

This commit is contained in:
J. A. Messias 2024-09-13 14:48:21 -03:00
parent 339d3ab725
commit 8f9570ebd2
3 changed files with 0 additions and 5 deletions

View File

@ -47,7 +47,6 @@ class _HomePageWidgetState extends State<HomePageWidget> {
final errorMsg = response.jsonBody['error_msg'];
if (error == false) {
log(response.jsonBody.toString());
AppState().whatsapp = response.jsonBody['whatsapp'] ?? false;
AppState().provisional = response.jsonBody['provisional'] ?? false;
AppState().pets = response.jsonBody['pet'] ?? false;

View File

@ -488,7 +488,6 @@ class PreferencesPageModel with ChangeNotifier {
);
}
}).catchError((err) {
log(err.toString());
context.pop();
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(

View File

@ -20,7 +20,6 @@ class ValidatorUtil {
}
static String toISO8601(String format, String value) {
log('value: $value');
DateFormat dateFormat = DateFormat(format);
DateTime dateTime = dateFormat.parse(value);
@ -28,7 +27,6 @@ class ValidatorUtil {
}
static String toISO8601USA(String format, String value) {
log('value: $value');
DateFormat dateFormat = DateFormat(format);
DateTime dateTime = dateFormat.parse(value);
String date = dateTime.toIso8601String() + 'Z';
@ -45,7 +43,6 @@ class ValidatorUtil {
}
static String formatDateTimePicker(String dateTime) {
log('dateTime: $dateTime');
List<String> parts = dateTime.split(' ');
String datePart = parts[0];
List<String> dateParts = datePart.split('-');