aboutsummaryrefslogtreecommitdiff
path: root/src/torcontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/torcontrol.cpp')
-rw-r--r--src/torcontrol.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/torcontrol.cpp b/src/torcontrol.cpp
index bb72315c8e..40ffbe61b1 100644
--- a/src/torcontrol.cpp
+++ b/src/torcontrol.cpp
@@ -408,8 +408,10 @@ void TorController::add_onion_cb(TorControlConnection& conn, const TorControlRep
}
AddLocal(service, LOCAL_MANUAL);
// ... onion requested - keep connection open
+ } else if (reply.code == 510) { // 510 Unrecognized command
+ LogPrintf("[tor] Add onion failed with unrecognized command (You probably need to upgrade Tor)\n");
} else {
- LogPrintf("[tor] Add onion failed\n");
+ LogPrintf("[tor] Add onion failed; error code %d\n", reply.code);
}
}