Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
282a2057
Commit
282a2057
authored
Sep 05, 2023
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nr rlc test: minor: change the logging
parent
1272847f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair2/LAYER2/nr_rlc/tests/LOG/log.h
openair2/LAYER2/nr_rlc/tests/LOG/log.h
+3
-3
No files found.
openair2/LAYER2/nr_rlc/tests/LOG/log.h
View file @
282a2057
...
...
@@ -3,8 +3,8 @@
#include <stdio.h>
#define LOG_E(x, ...)
printf(__VA_ARGS__
)
#define LOG_D(x, ...)
printf(__VA_ARGS__
)
#define LOG_W(x, ...)
printf(__VA_ARGS__
)
#define LOG_E(x, ...)
do { printf("LOG_E: "); printf(__VA_ARGS__); } while (0
)
#define LOG_D(x, ...)
do { printf("LOG_D: "); printf(__VA_ARGS__); } while (0
)
#define LOG_W(x, ...)
do { printf("LOG_W: "); printf(__VA_ARGS__); } while (0
)
#endif
/* _NR_RLC_TESTS_LOG_H_ */
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