Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
openairinterface5G
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
19
Merge Requests
19
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
oai
openairinterface5G
Commits
82c3f06d
Commit
82c3f06d
authored
Aug 24, 2018
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix dlsim tests failures in CI ( log level improperly set due to log modifications)
parent
51c86dd4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+3
-3
No files found.
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
82c3f06d
...
...
@@ -523,7 +523,7 @@ int main(int argc, char **argv)
int
c
;
int
k
,
i
,
j
,
aa
;
int
re
;
int
loglvl
=
OAILOG_DEBUG
;
int
s
,
Kr
,
Kr_bytes
;
...
...
@@ -1001,7 +1001,7 @@ int main(int argc, char **argv)
break
;
case
'L'
:
set_glog
(
atoi
(
optarg
)
);
loglvl
=
atoi
(
optarg
);
break
;
case
'h'
:
...
...
@@ -1049,7 +1049,7 @@ int main(int argc, char **argv)
"cannot load configuration module, exiting
\n
"
);
logInit
();
// enable these lines if you need debug info
set_glog
(
LOG_DEBUG
);
set_glog
(
loglvl
);
// moreover you need to init itti with the following line
// however itti will catch all signals, so ctrl-c won't work anymore
// alternatively you can disable ITTI completely in CMakeLists.txt
...
...
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