From 5b58c300112cbd0f9679a1353456bc5f430da400 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Mon, 24 Apr 2017 22:31:51 -0700 Subject: [PATCH] Fix TypeError --- src/tor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tor.js b/src/tor.js index 26799b49..c8b2b835 100644 --- a/src/tor.js +++ b/src/tor.js @@ -52,7 +52,7 @@ function getTorIPs(cb) { fs.writeFile(destination, ips.join("\n"), error => { - LOGGER.error("Failed to write to %s: %s", destination, error.stack); + LOGGER.error("Failed to write to %s: %s", destination, error); }); return; }