Created
April 12, 2010 21:19
-
-
Save horatio-sans-serif/364010 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/projects/node-red(master) ⚡ ./bin/start | |
OK | |
(integer) 1 | |
DEBUG: NodeRed version 0.0.7 | |
DEBUG: [CONTROLLER] loading transport: tcp | |
DEBUG: [CONTROLLER] transport tcp: {"name":"tcp","version":"0.0.1"} | |
DEBUG: [DISPATCH] loading request handlers | |
DEBUG: [DISPATCH] handler group 'builtin' supports request WHO | |
DEBUG: [DISPATCH] handler group 'builtin' supports request INFO | |
DEBUG: [DISPATCH] handler group 'builtin' supports request SUBSCRIBE | |
DEBUG: [DISPATCH] handler group 'builtin' supports request PUBLISH | |
DEBUG: [DISPATCH] handler group 'builtin' supports request CLUSTER | |
DEBUG: [DISPATCH] handler group 'builtin' supports request LIST | |
DEBUG: [DISPATCH] handler group 'builtin' supports request IDENTIFY | |
DEBUG: [DISPATCH] handler group 'builtin' supports request UNSUBSCRIBE | |
DEBUG: [TCP] listening 127.0.0.1:8080 | |
DEBUG: [TCP] client connection from 127.0.0.1 | |
DEBUG: [TCP] client connection from 127.0.0.1 | |
DEBUG: [TCP] received 71 bytes from 127.0.0.1 | |
DEBUG: PENDING COMMAND: [Guest-g891ly0g.w1m7vi] [0,"IDENTIFY","subber"] | |
DEBUG: PENDING COMMAND: [Guest-g891ly0g.w1m7vi] [1,"SUBSCRIBE","foo"] | |
DEBUG: PENDING COMMAND: [Guest-g891ly0g.w1m7vi] [2,"SUBSCRIBE","foo"] | |
DEBUG: [CONTROLLER] checking for work, found: 3 requests pending. | |
DEBUG: [DISPATCH] dispatch IDENTIFY | |
DEBUG: <--- [[email protected]] [0,true] | |
DEBUG: [CONTROLLER] checking for work, found: 2 requests pending. | |
DEBUG: [DISPATCH] dispatch SUBSCRIBE | |
DEBUG: SubscribeClient: foo subber | |
DEBUG: [CONTROLLER] adding subscription to 'foo' for 'subber' | |
DEBUG: [CONTROLLER] subscribed 'subber' to 'foo' | |
DEBUG: <--- [[email protected]] [1,true] | |
DEBUG: [CONTROLLER] checking for work, found: 1 requests pending. | |
DEBUG: [DISPATCH] dispatch SUBSCRIBE | |
IOWatcher.callback (net:331:16) | |
node.js:818:9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/projects/node-red(master) ⚡ ./test/tcp/test-builtin.js | |
DEBUG: testing testPubSub | |
DEBUG: >>> [0,"IDENTIFY","subber"] | |
DEBUG: >>> [1,"SUBSCRIBE","foo"] | |
DEBUG: >>> [2,"SUBSCRIBE","foo"] | |
DEBUG: <<< [0,true] | |
DEBUG: match:[0,true] | |
DEBUG: checking reply | |
[0,true] | |
DEBUG: <<< [1,true] | |
DEBUG: match:[1,true] | |
DEBUG: checking reply | |
[1,true] | |
DEBUG: not connected | |
DEBUG: Client is not connected... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment