Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
re6stnet
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
zhifan huang
re6stnet
Commits
3e1a6244
Commit
3e1a6244
authored
8 years ago
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rina: prefix logged exceptions with "RINA:"
parent
596050eb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
re6st/rina.py
re6st/rina.py
+3
-3
No files found.
re6st/rina.py
View file @
3e1a6244
...
...
@@ -55,7 +55,7 @@ class ipcm(object):
logging
.
debug
(
"%s"
,
x
)
return
r
except
socket
.
error
,
e
:
logging
.
info
(
"%s"
,
e
)
logging
.
info
(
"
RINA:
%s"
,
e
)
del
self
.
_socket
def
iterIpcp
(
self
):
...
...
@@ -295,7 +295,7 @@ if os.path.isdir("/sys/rina"):
return
True
shim
=
None
except
Exception
,
e
:
logging
.
info
(
"%s"
,
e
)
logging
.
info
(
"
RINA:
%s"
,
e
)
return
False
def
enabled
(
*
args
):
...
...
@@ -303,4 +303,4 @@ def enabled(*args):
try
:
shim
.
enabled
(
*
args
)
except
Exception
,
e
:
logging
.
info
(
"%s"
,
e
)
logging
.
info
(
"
RINA:
%s"
,
e
)
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