mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
搭建PVB架构,实现前端的基础布局、菜单、表格、图示等功能
This commit is contained in:
13
libs/pvb/include/rllib/log.h
Normal file
13
libs/pvb/include/rllib/log.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef log__
|
||||
#define log__
|
||||
#define LOG1(x) fprintf(stderr,x)
|
||||
#define LOG2(x,y) fprintf(stderr,x,y)
|
||||
#define LOG3(a,b,c) fprintf(stderr,a,b,c)
|
||||
#define LOG4(a,b,c,d) fprintf(stderr,a,b,c,d)
|
||||
#define LOG5(a,b,c,d,e) fprintf(stderr,a,b,c,d,e)
|
||||
#define FLUSH fflush(stderr)
|
||||
|
||||
#define LOG_1(a) fprintf(stderr,a)
|
||||
#define LOG_2(a,b) fprintf(stderr,a,b)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user