What happened?
In ozhera-monitor/ozhera-monitor-service/.../HeraBaseInfoServiceImpl.java (around line 204), the log message uses the misspelling sucess:
log.info("del HeraAppRole AppById sucess!dataId:{}", id);
It should be success.
Impact
This is only a log text typo and does not affect any business logic, but it is misleading when grepping/reading logs.
Suggested fix
- log.info("del HeraAppRole AppById sucess!dataId:{}", id);
+ log.info("del HeraAppRole AppById success!dataId:{}", id);
What happened?
In
ozhera-monitor/ozhera-monitor-service/.../HeraBaseInfoServiceImpl.java(around line 204), the log message uses the misspellingsucess:It should be
success.Impact
This is only a log text typo and does not affect any business logic, but it is misleading when grepping/reading logs.
Suggested fix