erlware / erlware_commons

Erlware Commons is an Erlware project focused on all aspects of reusable Erlang components.
http://erlware.github.io/erlware_commons/
MIT License
220 stars 101 forks source link

ec_cmd_log doesn't support unicode chars #157

Closed TheGeorge closed 3 years ago

TheGeorge commented 3 years ago
    lists:flatten(cf:format("~!" ++ [Color] ++"~s~s", [?PREFIX, Msg]));

in ec_cmd_log should probably be

    lists:flatten(cf:format("~!" ++ [Color] ++"~ts~ts", [?PREFIX, Msg]));

This is for rebar3 log (used from plugins)