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-bitswap
Commits
40993c17
Commit
40993c17
authored
Jan 18, 2015
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(bitswap): rm debug log (covered by eventlog)
parent
4db3e96d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
bitswap.go
bitswap.go
+0
-3
No files found.
bitswap.go
View file @
40993c17
...
@@ -108,7 +108,6 @@ type bitswap struct {
...
@@ -108,7 +108,6 @@ type bitswap struct {
// GetBlock attempts to retrieve a particular block from peers within the
// GetBlock attempts to retrieve a particular block from peers within the
// deadline enforced by the context.
// deadline enforced by the context.
func
(
bs
*
bitswap
)
GetBlock
(
parent
context
.
Context
,
k
u
.
Key
)
(
*
blocks
.
Block
,
error
)
{
func
(
bs
*
bitswap
)
GetBlock
(
parent
context
.
Context
,
k
u
.
Key
)
(
*
blocks
.
Block
,
error
)
{
log
:=
log
.
Prefix
(
"bitswap(%s).GetBlock(%s)"
,
bs
.
self
,
k
)
// Any async work initiated by this function must end when this function
// Any async work initiated by this function must end when this function
// returns. To ensure this, derive a new context. Note that it is okay to
// returns. To ensure this, derive a new context. Note that it is okay to
...
@@ -121,11 +120,9 @@ func (bs *bitswap) GetBlock(parent context.Context, k u.Key) (*blocks.Block, err
...
@@ -121,11 +120,9 @@ func (bs *bitswap) GetBlock(parent context.Context, k u.Key) (*blocks.Block, err
ctx
=
eventlog
.
ContextWithLoggable
(
ctx
,
eventlog
.
Uuid
(
"GetBlockRequest"
))
ctx
=
eventlog
.
ContextWithLoggable
(
ctx
,
eventlog
.
Uuid
(
"GetBlockRequest"
))
defer
log
.
EventBegin
(
ctx
,
"GetBlockRequest"
,
&
k
)
.
Done
()
defer
log
.
EventBegin
(
ctx
,
"GetBlockRequest"
,
&
k
)
.
Done
()
log
.
Debugf
(
"GetBlockRequestBegin"
)
defer
func
()
{
defer
func
()
{
cancelFunc
()
cancelFunc
()
log
.
Debugf
(
"GetBlockRequestEnd"
)
}()
}()
promise
,
err
:=
bs
.
GetBlocks
(
ctx
,
[]
u
.
Key
{
k
})
promise
,
err
:=
bs
.
GetBlocks
(
ctx
,
[]
u
.
Key
{
k
})
...
...
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