Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3-routing
Commits
b29cf0c3
Commit
b29cf0c3
authored
9 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move log messages out of warning level
parent
15854ee4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dht/dht_net.go
dht/dht_net.go
+1
-1
dht/handlers.go
dht/handlers.go
+1
-1
No files found.
dht/dht_net.go
View file @
b29cf0c3
...
...
@@ -54,7 +54,7 @@ func (dht *IpfsDHT) handleNewMessage(s inet.Stream) {
// if nil response, return it before serializing
if
rpmes
==
nil
{
log
.
Warnin
g
(
"Got back nil response from request."
)
log
.
Debu
g
(
"Got back nil response from request."
)
return
}
...
...
This diff is collapsed.
Click to expand it.
dht/handlers.go
View file @
b29cf0c3
...
...
@@ -140,7 +140,7 @@ func (dht *IpfsDHT) handleFindPeer(ctx context.Context, p peer.ID, pmes *pb.Mess
}
if
closest
==
nil
{
log
.
Warning
f
(
"%s handleFindPeer %s: could not find anything."
,
dht
.
self
,
p
)
log
.
Info
f
(
"%s handleFindPeer %s: could not find anything."
,
dht
.
self
,
p
)
return
resp
,
nil
}
...
...
This diff is collapsed.
Click to expand it.
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