Browse Source

debug: log msg on socket connection

Ifedapo Olarewaju 8 years ago
parent
commit
20af59bd36
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/core/UppySocket.js

+ 1 - 0
src/core/UppySocket.js

@@ -8,6 +8,7 @@ module.exports = class UppySocket {
     this.emitter = ee()
 
     this.socket.onopen = (e) => {
+      console.log('socket connection successfully opened.')
       this.isOpen = true
 
       while (this.queued.length > 0 && this.isOpen) {