Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
c80811a7
Commit
c80811a7
authored
Jul 29, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't spam the everloving shit out of the console for debug logging.
parent
e157c6bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
2 deletions
+42
-2
connection.go
connection.go
+2
-2
debug.go
debug.go
+40
-0
No files found.
connection.go
View file @
c80811a7
...
...
@@ -390,7 +390,7 @@ func (c *Connection) ReadOp() (ctx context.Context, op interface{}, err error) {
opID
:=
c
.
nextOpID
c
.
nextOpID
++
c
.
debugLog
(
opID
,
1
,
"<- %
#v"
,
op
)
c
.
debugLog
(
opID
,
1
,
"<- %
s"
,
describeRequest
(
op
)
)
// Special case: handle interrupt requests inline.
if
interruptOp
,
ok
:=
op
.
(
*
interruptOp
);
ok
{
...
...
@@ -443,7 +443,7 @@ func (c *Connection) Reply(ctx context.Context, opErr error) {
// Debug logging
if
c
.
debugLogger
!=
nil
{
if
opErr
==
nil
{
c
.
debugLog
(
opID
,
1
,
"-> OK: %
#v"
,
op
)
c
.
debugLog
(
opID
,
1
,
"-> OK: %
s"
,
describeResponse
(
op
)
)
}
else
{
c
.
debugLog
(
opID
,
1
,
"-> error: %v"
,
opErr
)
}
...
...
debug.go
0 → 100644
View file @
c80811a7
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package
fuse
import
(
"fmt"
"reflect"
)
func
describeRequest
(
op
interface
{})
(
s
string
)
{
v
:=
reflect
.
ValueOf
(
op
)
.
Elem
()
t
:=
v
.
Type
()
// Find the inode number involved, if possible.
var
inodeDesc
string
if
f
:=
v
.
FieldByName
(
"Inode"
);
f
.
IsValid
()
{
inodeDesc
=
fmt
.
Sprintf
(
"(inode=%v)"
,
f
.
Interface
())
}
// Use the type name.
s
=
fmt
.
Sprintf
(
"%s%s"
,
t
.
Name
(),
inodeDesc
)
return
}
func
describeResponse
(
op
interface
{})
(
s
string
)
{
return
describeRequest
(
op
)
}
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