aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js
deleted file mode 100644
index 2cb6a4e1..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/redis/examples/monitor.js
+++ /dev/null
@@ -1,10 +0,0 @@
-var client = require("../index").createClient(),
- util = require("util");
-
-client.monitor(function (err, res) {
- console.log("Entering monitoring mode.");
-});
-
-client.on("monitor", function (time, args) {
- console.log(time + ": " + util.inspect(args));
-});