app/log.js

Summary

Maintainability
A
0 mins
Test Coverage
// var ws = new WebSocket('ws://localhost:8080')

export default function log () {
  console.error(arguments)
  // if (typeof message === 'object') {
  //   message = JSON.stringify(message)
  // }

  // ws.send(message)
}