Commit 585af568 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed a few more build errors.

parent 623ae99f
......@@ -415,11 +415,11 @@ func (c *Connection) ReadOp() (op fuseops.Op, err error) {
c.finishOp(m.Header().Opcode, m.Header().Unique)
// Debug logging
if c.debugLogger != nil {
if debugLogForOp != nil {
if opErr == nil {
op.Logf("-> OK: %s", op.DebugString())
debugLogForOp(1, "-> OK: %s", op.DebugString())
} else {
op.Logf("-> error: %v", opErr)
debugLogForOp(1, "-> error: %v", opErr)
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment