恢复告警清零带来的逻辑改变

Signed-off-by: xiacong <xiacong4@huawei.com>
Change-Id: I8d34d2b9c43ea54e5474cbddcde0048658cbb891
Signed-off-by: xiacong <xiacong4@huawei.com>
This commit is contained in:
xiacong 2022-09-26 17:25:07 +08:00
parent f34762c105
commit a83f916298
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ INT32 CmdLog(INT32 argc, const CHAR **argv)
} }
} else if (!strncmp(argv[0], "module", strlen(argv[0]) + 1)) { } else if (!strncmp(argv[0], "module", strlen(argv[0]) + 1)) {
module = strtoul(argv[1], &p, 0); module = strtoul(argv[1], &p, 0);
if ((*p != 0) || (module > MODULE4) || (module == MODULE0)) { if ((*p != 0) || (module > MODULE4)) {
PRINTK("log %s can't access %s\n", argv[0], argv[1]); PRINTK("log %s can't access %s\n", argv[0], argv[1]);
PRINTK("not support yet\n"); PRINTK("not support yet\n");
return -1; return -1;