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
thank you for your great work. I've kept wondering why you are using .toml file, which are less common than for example .yaml file, and more tedious to read (especially when you don't have a plugin, like in Eclipse).
[[sink]]
name = "null_sink_mt"type = "null_sink_mt"level = "info"# only works for Linux
[[sink]]
name = "syslog_st"type = "syslog_sink_st"
whereas you could have a more elegant and less redundant:
sink:
null_sink_mt:
type: null_sink_mtlevel: infosyslog_st: # only work for Linuxtype: syslog_sink_st
Thank you for your time.
The text was updated successfully, but these errors were encountered:
Hello,
thank you for your great work. I've kept wondering why you are using .toml file, which are less common than for example .yaml file, and more tedious to read (especially when you don't have a plugin, like in Eclipse).
whereas you could have a more elegant and less redundant:
Thank you for your time.
The text was updated successfully, but these errors were encountered: