File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff 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
1112var (
1213 timingLog = utils .NewDebugLogger ("supabase:dev:timing" )
1314 watcherLog = utils .NewDebugLogger ("supabase:dev:watcher" )
Original file line number Diff line number Diff 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
7170func (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-
You can’t perform that action at this time.
0 commit comments