Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
f6f6570d
Commit
f6f6570d
authored
Oct 23, 2018
by
Cédric Roux
Browse files
T: minor: don't abort() in textlog.c
This leads to some logs missing in some situations. Plus it's not user-friendly.
parent
387b4ff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/utils/T/tracer/textlog.c
View file @
f6f6570d
...
...
@@ -187,7 +187,7 @@ int main(int n, char **v)
while
(
1
)
{
event
e
;
e
=
get_event
(
textlog_data
.
socket
,
&
ebuf
,
database
);
if
(
e
.
type
==
-
1
)
abort
()
;
if
(
e
.
type
==
-
1
)
break
;
handle_event
(
h
,
e
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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