Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Nov 3, 2022
1 parent a96c996 commit 281257c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion core/homescript/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ func (m *Manager) GetUserDirectJobs(username string) []ApiJob {
}
// Skip any indirect jobs
if len(job.Executor.CallStack) > 1 {
fmt.Println(job.Executor.CallStack)
continue
}
jobs = append(jobs, ApiJob{
Expand Down
3 changes: 0 additions & 3 deletions core/scheduler/automation/automation_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package automation

import (
"fmt"
"os"
"testing"
"time"
Expand Down Expand Up @@ -539,8 +538,6 @@ func TestDisableOnce(t *testing.T) {
return
}

fmt.Println("PASS, starting part 2")

// Check if the `DisableOnce` boolean has reset to `false`
automation, found, err = GetUserAutomationById("admin", id)
assert.NoError(t, err)
Expand Down

0 comments on commit 281257c

Please sign in to comment.