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
when print a record like #rec{field =<<"">>}, it will trans to string "#rec{field=<<"">>}"
every thing works fine, but when paste this string to shell will cause syntax error before: '=<'
because need space after '=' like this "#rec{field= <<"">>}"
when print a record like
#rec{field =<<"">>}
, it will trans to string "#rec{field=<<"">>}"every thing works fine, but when paste this string to shell will cause
syntax error before: '=<'
because need space after '=' like this "#rec{field= <<"">>}"
so, can we change this format here
lager/src/lager_trunc_io.erl
Lines 501 to 504 in 459a3b2
one way is change binary print function
lager/src/lager_trunc_io.erl
Lines 130 to 148 in 459a3b2
but this may cause some other behavior changed
or just add ensure_space after print function, like this
if add
ensure_space
is enough, i can make a pr for thisThe text was updated successfully, but these errors were encountered: