Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Julian Dehm
briar
Commits
6c8cc79d
Verified
Commit
6c8cc79d
authored
Aug 22, 2018
by
akwizgran
Browse files
Log Tor relay names to detect failing bridges.
parent
a5271eee
Changes
1
Hide whitespace changes
Inline
Side-by-side
bramble-core/src/main/java/org/briarproject/bramble/plugin/tor/TorPlugin.java
View file @
6c8cc79d
...
...
@@ -578,7 +578,8 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
@Override
public
void
orConnStatus
(
String
status
,
String
orName
)
{
if
(
LOG
.
isLoggable
(
INFO
))
LOG
.
info
(
"OR connection "
+
status
);
if
(
LOG
.
isLoggable
(
INFO
))
LOG
.
info
(
"OR connection "
+
status
+
" "
+
orName
);
if
(
status
.
equals
(
"CLOSED"
)
||
status
.
equals
(
"FAILED"
))
{
// Check whether we've lost connectivity
updateConnectionStatus
(
networkManager
.
getNetworkStatus
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment