@@ -67,7 +67,7 @@ const asset_copier = () => {
67
67
_ . each ( dirs , ( dir , key ) => {
68
68
//if we want to watch files, do so, otherwise just copy each file
69
69
if ( options . watch ) {
70
- logger . info (
70
+ logger . debug (
71
71
`Pattern Lab is watching ${ path . resolve (
72
72
basePath ,
73
73
dir . source
@@ -145,7 +145,7 @@ const asset_copier = () => {
145
145
) ;
146
146
147
147
_ . each ( globalPaths , globalPath => {
148
- logger . info ( `Pattern Lab is watching ${ globalPath } for changes` ) ;
148
+ logger . debug ( `Pattern Lab is watching ${ globalPath } for changes` ) ;
149
149
150
150
if ( patternlab . watchers [ globalPath ] ) {
151
151
patternlab . watchers [ globalPath ] . close ( ) ;
@@ -193,7 +193,7 @@ const asset_copier = () => {
193
193
)
194
194
) ;
195
195
_ . each ( patternWatches , patternWatchPath => {
196
- logger . info ( `Pattern Lab is watching ${ patternWatchPath } for changes` ) ;
196
+ logger . debug ( `Pattern Lab is watching ${ patternWatchPath } for changes` ) ;
197
197
198
198
const patternWatcher = chokidar . watch ( path . resolve ( patternWatchPath ) , {
199
199
ignored : / ( ^ | [ \/ \\ ] ) \. ./ ,
@@ -223,6 +223,11 @@ const asset_copier = () => {
223
223
} ) ;
224
224
} ) ;
225
225
}
226
+ logger . info (
227
+ `Pattern Lab is watching for changes to files under ${
228
+ assetDirectories . source . root
229
+ } `
230
+ ) ;
226
231
} ;
227
232
228
233
return {
0 commit comments