Remove verbose log

This commit is contained in:
vishnukvmd 2023-05-08 12:57:40 +05:30
parent 0b695639e7
commit 928fee19e3

View file

@ -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);
}