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
To reproduce, setup your config file colors so that messages should not be printed as bold, for example:
colors:
timestamp:
fg: cyan
message:
fg: white
bold: false
attributekey:
faint: true
fg: green
attributevalue:
faint: true
fg: white
Expected behavior: the message field should not be printed bold
Actual behavior: it is printed bold
Note: The opposite, making other fields bold, works fine.
From a quick look, this appears to be caused by a bug in the underlying "mergo" library that is used to merge the default config and the user's config. Boolean values of false are not merged. See this issue: darccio/mergo#166
The text was updated successfully, but these errors were encountered:
To reproduce, setup your config file colors so that messages should not be printed as bold, for example:
Expected behavior: the message field should not be printed bold
Actual behavior: it is printed bold
Note: The opposite, making other fields bold, works fine.
From a quick look, this appears to be caused by a bug in the underlying "mergo" library that is used to merge the default config and the user's config. Boolean values of false are not merged. See this issue: darccio/mergo#166
The text was updated successfully, but these errors were encountered: