Logging cleanup

This commit is contained in:
2023-05-06 11:40:38 +02:00
parent 9b5a4f7029
commit cc43a9e081
7 changed files with 4 additions and 28 deletions

View File

@ -1,6 +1,4 @@
import 'dart:developer';
import 'package:intl/intl.dart';
import 'package:marianum_mobile/api/apiResponse.dart';
import 'package:marianum_mobile/api/webuntis/queries/getHolidays/getHolidaysCache.dart';
@ -63,7 +61,6 @@ class TimetableProps extends DataHolder {
},
onError: (Exception e) => {
error = e as WebuntisError?,
log("hello there"),
notifyListeners(),
}
);
@ -122,7 +119,6 @@ class TimetableProps extends DataHolder {
} on WebuntisError catch(e) {
error = e;
notifyListeners();
log(e.toString());
}
}
}