[mob][photos] Remove logs added for debugging

This commit is contained in:
ashilkn 2024-05-03 19:21:56 +05:30
parent b494c308b1
commit 8154dc4a7c

View file

@ -326,7 +326,6 @@ Future<bool> _isRunningInForeground() async {
}
Future<void> _killBGTask([String? taskId]) async {
_logger.info("KillingBGTask taskId: $taskId ***************");
await UploadLocksDB.instance.releaseLocksAcquiredByOwnerBefore(
ProcessType.background.toString(),
DateTime.now().microsecondsSinceEpoch,
@ -341,7 +340,6 @@ Future<void> _killBGTask([String? taskId]) async {
///Band aid for background process not getting killed. Should migrate to using
///workmanager instead of background_fetch.
Isolate.current.kill();
_logger.info('Kill BG task done *************');
}
Future<void> _firebaseMessagingBackgroundHandler(RemoteMessage message) async {