Browse Source

Remove verbose log (#1075)

Vishnu Mohandas 2 năm trước cách đây
mục cha
commit
19e5d29934
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      lib/main.dart

+ 0 - 1
lib/main.dart

@@ -260,7 +260,6 @@ Future<bool> _isRunningInForeground() async {
   final lastFGHeartBeatTime = DateTime.fromMicrosecondsSinceEpoch(
     prefs.getInt(kLastFGTaskHeartBeatTime) ?? 0,
   );
-  _logger.info("Last FG heart beat @ $lastFGHeartBeatTime");
   return lastFGHeartBeatTime.microsecondsSinceEpoch >
       (currentTime - kFGTaskDeathTimeoutInMicroseconds);
 }