You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bahir.apache.org by "Yik San Chan (Jira)" <ji...@apache.org> on 2021/03/11 12:17:00 UTC

[jira] [Created] (BAHIR-265) Fix Java format print mismatch

Yik San Chan created BAHIR-265:
----------------------------------

             Summary: Fix Java format print mismatch
                 Key: BAHIR-265
                 URL: https://issues.apache.org/jira/browse/BAHIR-265
             Project: Bahir
          Issue Type: Bug
            Reporter: Yik San Chan


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);

```



--
This message was sent by Atlassian Jira
(v8.3.4#803005)