fix: net.recon module is now enabled by default

This commit is contained in:
evilsocket 2018-01-27 21:13:49 +01:00
commit 9a0f85b8bd
16 changed files with 4 additions and 21 deletions

View file

@ -82,7 +82,7 @@ func (t *Ticker) Start() error {
t.SetRunning(true)
go func() {
log.Info("Ticker running with period %ds.", t.Period)
log.Info("Ticker running with period %ds.", t.Period.Seconds())
tick := time.Tick(t.Period)
for _ = range tick {
if t.Running() == false {