sadadw1 opened a new issue, #677:
URL: https://github.com/apache/ozhera/issues/677
### What happened?
In `ozhera-monitor/ozhera-monitor-service/.../HeraBaseInfoServiceImpl.java`
(around line 204), the log message uses the misspelling `sucess`:
```java
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
```diff
- log.info("del HeraAppRole AppById sucess!dataId:{}", id);
+ log.info("del HeraAppRole AppById success!dataId:{}", id);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]