Fix TypeError

This commit is contained in:
Calvin Montgomery 2017-04-24 22:31:51 -07:00
parent ef9c744003
commit 5b58c30011

View file

@ -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;
}