Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
Fix format-print mismatch, for example:
```java
LOG.info("command value {} ttl {}", key, value, ttl);
```
should really be
```java
LOG.info("command key {} value {} ttl {}", key, value, ttl);
```
Attachments
Issue Links
- links to