You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code here for logging float and double values to JSON uses a "%g" conversion, which is insufficient for some of my users. The yajl_gen implementation in EPICS 7 uses "%.17g" and appends ".0" if the previous string only contains digits and/or a minus sign. I will be developing a PR shortly to use that approach instead (or possibly just call yajl_gen to do it).
The text was updated successfully, but these errors were encountered:
The code here for logging float and double values to JSON uses a
"%g"
conversion, which is insufficient for some of my users. The yajl_gen implementation in EPICS 7 uses"%.17g"
and appends".0"
if the previous string only contains digits and/or a minus sign. I will be developing a PR shortly to use that approach instead (or possibly just call yajl_gen to do it).The text was updated successfully, but these errors were encountered: