Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch timeout has expired, giving up wake lock! Activity idle timeout for HistoryRecord. Is this something to worry about?

In my application I use AsyncTask in oncreate. Sometimes I get "Launch timeout has expired, giving up wake lock! Activity idle timeout for HistoryRecord" in the logs. Can this cause any issue, or we can just ignore this ?

like image 770
BlackberryChennai Avatar asked Apr 05 '12 15:04

BlackberryChennai


1 Answers

Finally Found the answer. This can be ignored.

This means that your main thread is continually running, pumping message through its message queue without ever going idle. If that is what you want, there is nothing to fix. This is why the log message is a warning, not an error.

Source : Google Groups

like image 103
BlackberryChennai Avatar answered Oct 02 '22 15:10

BlackberryChennai