From 2ccbd5b4323de63b9899cb2fbc9bd490e8ea6708 Mon Sep 17 00:00:00 2001 From: william Date: Tue, 2 Feb 2016 12:05:27 -0500 Subject: [PATCH] runner --- lxc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxc.js b/lxc.js index 002677c..648f16b 100644 --- a/lxc.js +++ b/lxc.js @@ -25,7 +25,7 @@ var lxc = { destroy: function(name, callback){ return sysExec('lxc-destroy -n '+ name, function(data){ var info = data.match(/Destroyed container/); - console.log('destroy info:' info); + console.log('destroy info:', info); var args = [true].concat(Array.prototype.slice.call(arguments, 1)); callback.apply(this, args); });