Skip to content

Commit

Permalink
lint: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall committed Dec 1, 2024
1 parent 7db331b commit 90f27cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion winlogbeat/scripts/mage/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package mage

import (
"fmt"
"log"
"os"
"time"

Expand All @@ -45,7 +46,7 @@ func init() {
// Use VERSION_QUALIFIER to control the version qualifier.
func Package() {
start := time.Now()
defer func() { fmt.Println("package ran for", time.Since(start)) }()
defer func() { log.Println("package ran for", time.Since(start)) }()

switch SelectLogic {
case devtools.OSSProject:
Expand Down

0 comments on commit 90f27cd

Please sign in to comment.