From 17087447e99ba4210bf496bfbf866e956bdc75d1 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Fri, 9 Aug 2019 15:12:24 -0400 Subject: [PATCH] logger: move to pkg (#2031) --- pkg/watch/notify.go | 2 +- pkg/watch/notify_test.go | 2 +- pkg/watch/watcher_darwin.go | 2 +- pkg/watch/watcher_naive.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/watch/notify.go b/pkg/watch/notify.go index 35c3cac07..638edbbcd 100644 --- a/pkg/watch/notify.go +++ b/pkg/watch/notify.go @@ -5,7 +5,7 @@ import ( "fmt" "path/filepath" - "github.com/windmilleng/tilt/internal/logger" + "github.com/windmilleng/tilt/pkg/logger" ) var ( diff --git a/pkg/watch/notify_test.go b/pkg/watch/notify_test.go index 34215aaf0..5e71fcd8c 100644 --- a/pkg/watch/notify_test.go +++ b/pkg/watch/notify_test.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/windmilleng/tilt/internal/dockerignore" - "github.com/windmilleng/tilt/internal/logger" "github.com/windmilleng/tilt/internal/testutils/tempdir" + "github.com/windmilleng/tilt/pkg/logger" ) // Each implementation of the notify interface should have the same basic diff --git a/pkg/watch/watcher_darwin.go b/pkg/watch/watcher_darwin.go index 69a5be50a..b92473d26 100644 --- a/pkg/watch/watcher_darwin.go +++ b/pkg/watch/watcher_darwin.go @@ -6,8 +6,8 @@ import ( "github.com/pkg/errors" - "github.com/windmilleng/tilt/internal/logger" "github.com/windmilleng/tilt/internal/ospath" + "github.com/windmilleng/tilt/pkg/logger" "github.com/windmilleng/fsevents" ) diff --git a/pkg/watch/watcher_naive.go b/pkg/watch/watcher_naive.go index 903da44bc..2c61b7218 100644 --- a/pkg/watch/watcher_naive.go +++ b/pkg/watch/watcher_naive.go @@ -10,8 +10,8 @@ import ( "github.com/pkg/errors" "github.com/windmilleng/fsnotify" - "github.com/windmilleng/tilt/internal/logger" "github.com/windmilleng/tilt/internal/ospath" + "github.com/windmilleng/tilt/pkg/logger" ) // A naive file watcher that uses the plain fsnotify API.