rename traffic-steering-service to sce

This commit is contained in:
luwenpeng
2023-02-03 18:52:56 +08:00
parent 8a3b3eb049
commit 72ba473aa5
14 changed files with 83 additions and 35 deletions

View File

@@ -8,16 +8,22 @@ extern "C"
#include <stdio.h>
#define LOG_DEBUG(format, ...) \
{ \
#define LOG_DEBUG(format, ...) \
{ \
fprintf(stdout, "DEBUG " format "\n", ##__VA_ARGS__); \
fflush(stdout); \
fflush(stdout); \
}
#define LOG_ERROR(format, ...) \
{ \
#define LOG_INFO(format, ...) \
{ \
fprintf(stdout, "INFO " format "\n", ##__VA_ARGS__); \
fflush(stdout); \
}
#define LOG_ERROR(format, ...) \
{ \
fprintf(stderr, "ERROR " format "\n", ##__VA_ARGS__); \
fflush(stderr); \
fflush(stderr); \
}
#ifdef __cpluscplus