comment out
Some checks failed
Build images / Build docker image (push) Failing after 34s
Tests / Run on Ubuntu (push) Successful in 1m38s
Lint / Run on Ubuntu (push) Successful in 1m49s

This commit is contained in:
Chris Richardson
2025-07-03 13:39:45 -04:00
parent d67c9503b8
commit 0de369d494
2 changed files with 3 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ import (
locustiov1alpha1 "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1"
"git.lilpenguins.com/crichardson/locust-operator/internal/controller"
logging "git.lilpenguins.com/crichardson/locust-operator/internal/logging"
"go.uber.org/zap"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
@@ -88,7 +89,7 @@ func main() {
*/
flag.Parse()
logger := CreateFileLogger(logFilePath, zap.DebugLevel)
logger := logging.CreateFileLogger(logFilePath, zap.DebugLevel)
// ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
ctrl.SetLogger(logger)

View File

@@ -1,4 +1,4 @@
package main
package logging
import (
"log"