Skip to content

Commit

Permalink
logging adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed May 1, 2022
1 parent 76843e5 commit 02d3a8f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/hot-reload.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,8 @@ const websocket = new WebSocket(`ws://${esmsInitOptions.hotHost || new URL(baseU
websocket.onmessage = evt => {
const { data } = evt;
if (data === 'Connected') {
console.log('Hot Reload ' + data);
console.info('Hot Reload ' + data);
} else {
console.log('CHANGE: ' + data);
invalidate(new URL(data, baseURI).href);
queueInvalidationInterval();
}
Expand Down

0 comments on commit 02d3a8f

Please sign in to comment.