From 406389b5332eed13a8ad9a0ac7305e9df4ea2169 Mon Sep 17 00:00:00 2001 From: Dustin Davis <1dustindavis@gmail.com> Date: Tue, 21 Aug 2018 09:41:29 -0700 Subject: [PATCH] Accidentally commited with cpu profiling in main --- cmd/gorilla/main.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/gorilla/main.go b/cmd/gorilla/main.go index 3179994..55e30e4 100644 --- a/cmd/gorilla/main.go +++ b/cmd/gorilla/main.go @@ -6,14 +6,10 @@ import ( "github.com/1dustindavis/gorilla/pkg/gorillalog" "github.com/1dustindavis/gorilla/pkg/manifest" "github.com/1dustindavis/gorilla/pkg/process" - "github.com/pkg/profile" ) func main() { - // CPU profiling by default - defer profile.Start().Stop() - // Create a new logger object gorillalog.NewLog()