From 25c3b0b8e15c14f303cfb5beff1d5a82ef93b830 Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Sat, 25 Mar 2017 21:16:10 -0400 Subject: [PATCH] fixes typo --- src/DNSServer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DNSServer.js b/src/DNSServer.js index 8f85c94..baa14e4 100644 --- a/src/DNSServer.js +++ b/src/DNSServer.js @@ -42,7 +42,7 @@ class DNSServer extends UDPServer { connect(this.tor_pool.next()); } else { - this.log.debug(`[dns]: a connection has been attempted, but no tor instances are live... waiting for an instance to come online`); + this.logger.debug(`[dns]: a connection has been attempted, but no tor instances are live... waiting for an instance to come online`); this.tor_pool.once('instance_created', connect); } });