Skip to content

Commit 1708744

Browse files
Dan Millerndeloof
authored andcommitted
logger: move to pkg (docker#2031)
1 parent ec78168 commit 1708744

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/watch/notify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"path/filepath"
77

8-
"github.com/windmilleng/tilt/internal/logger"
8+
"github.com/windmilleng/tilt/pkg/logger"
99
)
1010

1111
var (

pkg/watch/notify_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
"github.com/stretchr/testify/assert"
1616

1717
"github.com/windmilleng/tilt/internal/dockerignore"
18-
"github.com/windmilleng/tilt/internal/logger"
1918
"github.com/windmilleng/tilt/internal/testutils/tempdir"
19+
"github.com/windmilleng/tilt/pkg/logger"
2020
)
2121

2222
// Each implementation of the notify interface should have the same basic

pkg/watch/watcher_darwin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
"github.com/pkg/errors"
88

9-
"github.com/windmilleng/tilt/internal/logger"
109
"github.com/windmilleng/tilt/internal/ospath"
10+
"github.com/windmilleng/tilt/pkg/logger"
1111

1212
"github.com/windmilleng/fsevents"
1313
)

pkg/watch/watcher_naive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/pkg/errors"
1111
"github.com/windmilleng/fsnotify"
1212

13-
"github.com/windmilleng/tilt/internal/logger"
1413
"github.com/windmilleng/tilt/internal/ospath"
14+
"github.com/windmilleng/tilt/pkg/logger"
1515
)
1616

1717
// A naive file watcher that uses the plain fsnotify API.

0 commit comments

Comments
 (0)