Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Build artifacts
Makefile.in
/Makefile
aclocal.m4
autom4te.cache/
compile
config.guess
config.log
config.sub
configure
depcomp
install-sh
ltmain.sh
missing
*.in
config.h.in

# CodeQL artifacts
_codeql_detected_source_root
5 changes: 5 additions & 0 deletions rfcMgr/rdk_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#define RDK_LOG_INFO 3
#define RDK_LOG_WARN 4
#define RDK_LOG_ERROR 5
#define RDK_LOG_FATAL 6

// RDK Logger success/failure codes
#define RDK_SUCCESS 0
Expand Down Expand Up @@ -88,6 +89,9 @@
else if (level == RDK_LOG_ERROR) { \
printf("ERROR: %s: ", module); \
} \
else if (level == RDK_LOG_FATAL) { \
printf("FATAL: %s: ", module); \
} \
printf(__VA_ARGS__); \
} while (0)
#endif
Expand All @@ -98,6 +102,7 @@
#define RDK_LOG_INFO 3
#define RDK_LOG_WARN 4
#define RDK_LOG_ERROR 5
#define RDK_LOG_FATAL 6

#define RDK_SUCCESS 0
#define RDK_FAILURE -1
Expand Down
Loading