lib/eye/server.rb in reel-eye-0.5.1 vs lib/eye/server.rb in reel-eye-0.5.2
- old
+ new
@@ -24,10 +24,10 @@
text = socket.read
begin
command, *args = Marshal.load(text)
rescue => ex
- error "Failed socket read #{ex.message}"
+ error "Failed to read from socket: #{ex.message}"
return
end
response = command(command, *args)
socket.write(Marshal.dump(response))
\ No newline at end of file