Skip to content

Commit e775f7c

Browse files
committed
gofmt
1 parent dbdb0db commit e775f7c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

internal/dev/debug.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import "github.com/supabase/cli/internal/utils"
44

55
// Namespaced debug loggers for the dev package
66
// Enable via DEBUG environment variable:
7-
// DEBUG=supabase:dev:* - all dev logs
8-
// DEBUG=supabase:dev:timing - only timing logs
9-
// DEBUG=supabase:dev:watcher - only watcher logs
10-
// DEBUG=supabase:dev:sql - SQL statements being executed
7+
//
8+
// DEBUG=supabase:dev:* - all dev logs
9+
// DEBUG=supabase:dev:timing - only timing logs
10+
// DEBUG=supabase:dev:watcher - only watcher logs
11+
// DEBUG=supabase:dev:sql - SQL statements being executed
1112
var (
1213
timingLog = utils.NewDebugLogger("supabase:dev:timing")
1314
watcherLog = utils.NewDebugLogger("supabase:dev:watcher")

internal/dev/dev.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ func NewSession(ctx context.Context, fsys afero.Fs) *Session {
6666
}
6767
}
6868

69-
7069
// Run starts the dev session main loop
7170
func (s *Session) Run() error {
7271
schemasConfig := &utils.Config.Dev.Schemas
@@ -389,4 +388,3 @@ func loadSchemaFiles(fsys afero.Fs) ([]string, error) {
389388
})
390389
return files, err
391390
}
392-

0 commit comments

Comments
 (0)