handling all changes after waking up

This commit is contained in:
Prashant Gupta 2019-05-10 17:54:56 -07:00
parent 6e927e5423
commit 6d1ee4eb50
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ var instance *MouseMover
const ( const (
timeout = 100 //ms timeout = 100 //ms
logDir = "log" logDir = "log"
logFileName = "logFile-amm-2" logFileName = "logFile-amm-3"
) )
//Start the main app //Start the main app
@ -88,7 +88,7 @@ func (m *MouseMover) run(heartbeatCh chan *tracker.Heartbeat, activityTracker *t
logger.Infof("activityType : %v times: %v\n", activityType, len(times)) logger.Infof("activityType : %v times: %v\n", activityType, len(times))
if activityType == activity.MachineSleep { if activityType == activity.MachineSleep {
state.updateMachineSleepStatus(true) state.updateMachineSleepStatus(true)
} else if activityType == activity.MachineWake { } else {
state.updateMachineSleepStatus(false) state.updateMachineSleepStatus(false)
} }
} }