summaryrefslogtreecommitdiff
path: root/src/response_table.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/response_table.lua')
-rw-r--r--src/response_table.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/response_table.lua b/src/response_table.lua
index f178d9c..2613d2a 100644
--- a/src/response_table.lua
+++ b/src/response_table.lua
@@ -51,8 +51,6 @@ function response_table:dispatch(response_buffer)
if regex then
local match = string.match(response_buffer, "^" .. regex, init)
if match then
- log.printf(log.DEBUG, "got expected response ('%s'), command completed", match)
- -- TODO: send expected response to original requestor
command_queue:command_completed(match)
init = init + string.len(match)
end