Program Examples:sys log/zh-hans
语言: | English • 中文(简体) |
---|
'sys.log'是一个Linux记录器,允许程序员在程序运行时对其进行文档化。 我们已经在MC-Basic中启用了此功能。
Contents
打印sys.log
要打印sys.log,请执行以下操作:
1. 使用ssh或串口控制台连接到softMC。
2. 要打印整个日志,在Linux终端键入:
-bash-3.2$ cat /var/sys.log
or
3. 要打印最后几行,在Linux终端键入:
-bash-3.2$ tail -50 /var/sys.log
从MC-Basic发送字符串到sys.log
全局加载MC库SYSLOG.LIB
调用函数
log_msg(byval debug_level as long, byval log_str as string, byval arg1 as long, arg2, arg3..., arg10) as long
这里参数是:
debug_level - 使用以下常量之一:
MC_BASIC_LOG_LEVEL_NON = 0
MC_BASIC_LOG_LEVEL_ERROR = 1
MC_BASIC_LOG_LEVEL_WARNING = 2
MC_BASIC_LOG_LEVEL_NOTE = 3
MC_BASIC_LOG_LEVEL_DEBUG = 4
MC_BASIC_LOG_LEVEL_ALL = 5
IMPORTANT | |
可以使用telnet设置调试级别 |
调试级别MC_BASIC_LOG_LEVEL_ERROR中的日志消息将始终显示在sys.log中
如果softMC中MC-BASIC的调试级别设置为DEBUG,则调试级别MC_BASIC_LOG_LEVEL_DEBUG中的日志消息将显示在sys.log中。
log_str - 以printf格式的字符串
IMPORTANT | |
由函数log_msg使用的字符串变量必须声明为GLOBAL,因为可能会有common shared的或未定义的行为。 |
arg1 to arg10 -与log_str printf格式字符串对应的类型为LONG的变量。 未使用的参数可以设置为零。
如果成功,log_msg返回0,失败时返回-1。
例子
以下是向sys.log发送字符串的MC程序。
common shared log_string as string = "Example string. x = %d. y = %d"
Program
dim x as long = 5
dim y as long = 99
?log_msg(MC_BASIC_LOG_LEVEL_ERROR, log_string, x, y, 0,0,0,0,0,0,0,0)
End Program
-bash-3.2$ cat /var/sys.log
下载
SYSLOG库 - 对应于softMC的正式版本ECAT 0.4.13.2rc2
提取SYSLOG.ZIP以查找SYSLOG.LIB
File:SYSLOG.zip