Skip to content

Commit

Permalink
Clean up logging in backend
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-marschke committed Jan 8, 2024
1 parent 8ee4d99 commit 94fe6c9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions db/bolt/webhook.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package bolt

import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/ansible-semaphore/semaphore/db"
)

Expand Down Expand Up @@ -116,8 +114,6 @@ func (d *BoltDb) GetWebhookExtractValuesByExtractorID(extractorID int) (values [
}

func (d *BoltDb) DeleteWebhookExtractValue(extractorID int, valueID int) error {
log.Info(fmt.Sprintf("Deleting Extract Value: %s on extractor: %s", valueID, extractorID))

return d.deleteObject(extractorID, db.WebhookExtractValueProps, intObjectID(valueID), nil)
}

Expand Down

0 comments on commit 94fe6c9

Please sign in to comment.